Chris Peterson
|
d64ab9624b
|
Bug 829685 - Remove #include "prtypes.h" from some files that no longer use PR types. r=ehsan
|
2013-01-10 08:19:36 -08:00 |
|
Ehsan Akhgari
|
243c878d26
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Aryeh Gregor
|
691ef24b2a
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
Aryeh Gregor
|
8b4a23fc4c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Gervase Markham
|
cb6a072c2a
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Henri Sivonen
|
b9ff9b5491
|
Bug 731162 - Zap nsIParser::Parse(const nsAString&, ...). r=smaug.
|
2012-03-27 09:27:45 +03:00 |
|
Henri Sivonen
|
bf35c73451
|
Bug 737417 part 3 - Remove comm-central scaffolding from nsIParser.h. r=smaug.
|
2012-03-24 10:40:16 +02:00 |
|
Henri Sivonen
|
b191345374
|
Bug 737417 part 1 - Split charset source constants out of nsIParser.h. r=smaug.
|
2012-03-22 16:42:42 +02:00 |
|
Henri Sivonen
|
40ba9af5f5
|
Bug 714777 - Refactor fragment parsing out of nsHtml5Parser. r=smaug.
|
2012-01-20 13:16:27 +02:00 |
|
Henri Sivonen
|
4e63e18f2a
|
Bug 715103 - Move parser unblocking management from nsContentSink to nsScriptLoader. r=smaug.
|
2012-01-20 13:16:27 +02:00 |
|
Henri Sivonen
|
40e41c5d2b
|
Bug 715739 - Make document.write from inside a script-created parser not add to the wyciwyg channel. r=smaug.
|
2012-01-20 13:16:27 +02:00 |
|
Henri Sivonen
|
e37be49202
|
Bug 655261 - Remove nsIParserFilter from the tree. r=mrbkap.
|
2012-01-09 14:20:43 +02:00 |
|
Henri Sivonen
|
0d3eb749d1
|
Bug 651072 - Support HTML parsing in XMLHttpRequest. r=smaug.
|
2011-11-16 09:38:51 +02:00 |
|
Matt Brubeck
|
20044ae2a1
|
Back out 75ace50df008 to try to fix failures after last central/inbound merge on a CLOSED TREE
|
2011-11-16 11:50:48 -08:00 |
|
Ed Morley
|
badb47df6e
|
Merge mozilla-central to mozilla-inbound
|
2011-11-16 18:05:23 +00:00 |
|
Ms2ger
|
4c0d56004b
|
Bug 697494 - Outparamdel nsIParser::GetStreamListener; r=hsivonen
|
2011-11-16 08:50:19 +01:00 |
|
Henri Sivonen
|
8cb7bb6eef
|
Bug 651072 - Support HTML parsing in XMLHttpRequest. r=smaug.
|
2011-11-16 09:38:51 +02:00 |
|
Henri Sivonen
|
a42c6e14db
|
Bug 482921 part 1 - Implement HTML syntax highlighting using the new parser. r=Olli.Pettay.
|
2010-07-30 13:15:38 +03:00 |
|
Michael Wu
|
0fe7772ece
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
|
2011-09-28 23:19:26 -07:00 |
|
Henri Sivonen
|
2fa0fb46af
|
Bug 596182 - Make fragment parsers global. Remove resulting dead code. r=Olli.Pettay, r=bzbarsky.
|
2011-08-01 10:48:24 +03:00 |
|
Henri Sivonen
|
ac0f7a4f3c
|
Bug 631751 - Sniff Basic Latin BOMless UTF-16 for IE compat. r=bzbarsky, a=bzbarsky.
|
2011-02-16 08:40:35 +02:00 |
|
Ms2ger
|
740319538d
|
Bug 582712 - Remove nsHTMLDocument::TryBookmarkCharset; r=bz a=bsmedberg
|
2010-11-05 11:57:10 +01:00 |
|
Olli Pettay
|
780c38d2b9
|
Bug 580094 - Few SetInnerHTML micro optimizations , r=jst, a=benjamin
|
2010-07-21 19:03:21 +03:00 |
|
Frédéric Wang
|
f331005fd3
|
Bug 530275. Move more MIME types into nsMimeTypes.h so we don't have to hardcode the strings in various places. r=bzbarsky
|
2009-11-21 00:12:42 +01:00 |
|
Henri Sivonen
|
5c9324592e
|
Bug 521970 - Remove the ContinueParsing() method. r&sr=mrbkap.
|
2009-10-21 15:00:29 +03:00 |
|
Henri Sivonen
|
ea4c02a066
|
Bug 503473 - Prevent document.write() in the HTML5 parser where prohibited by HTML5. r=bnewman, sr=sicking.
|
2009-10-15 14:29:11 +03:00 |
|
Henri Sivonen
|
2b8f6a2e36
|
Bug 499642 - Split the HTML5 parser into stream parser, doc.write parser and tree op executor. r=bnewman, sr=mrbkap.
|
2009-09-18 12:21:47 +03:00 |
|
Henri Sivonen
|
3cb3b0a9bc
|
Bug 501015 - Address code style comments from timeless. r+sr=mrbkap
|
2009-07-15 14:30:33 +03:00 |
|
Henri Sivonen
|
2f19c38b3b
|
Bug 487949 - Land HTML5 parser on trunk preffed off r=mrbkap, sr=jonas
|
2009-06-29 00:44:22 +02:00 |
|
Johnny Stenback
|
64cf7ea628
|
Backed out changeset 168dd0eb7283
|
2009-06-28 11:47:11 -07:00 |
|
Henri Sivonen
|
cde24c9a06
|
Merge trunk into HTML5 repo
|
2009-06-26 18:22:48 +03:00 |
|
Ben Newman
|
cdf9308eef
|
Bug 484121 (2/6) - Add nsIDTD::GetMode to eliminate heinous const_cast. r+sr=mrbkap
|
2009-06-23 14:22:16 -07:00 |
|
Henri Sivonen
|
8ee8640d4d
|
Merge trunk into HTML5 repo
|
2009-05-25 19:16:57 +03:00 |
|
Jonas Sicking
|
f0aa860733
|
Bug 481566: Add prefs to control making the content sink more responsive. r/sr=mrbkap
|
2009-05-19 08:54:42 -07:00 |
|
Henri Sivonen
|
153b928d57
|
Merge the trunk into HTML5 parsing repo
|
2009-05-04 11:19:16 -07:00 |
|
Henri Sivonen
|
b7606f7803
|
Implement one single parsing quirk for HTML5 parser: <p><table>. Required to pass Acid2 and to be compatible with legacy content.
|
2009-04-22 12:17:08 +03:00 |
|
Henri Sivonen
|
72f87ec010
|
Add innerHTML parsing with HTML5 parser
|
2009-02-20 18:13:48 +02:00 |
|
Henri Sivonen
|
5dc8f25195
|
Restart HTML5 parser on meta charset; release stack and list memory in tree builder
|
2009-01-16 15:21:48 +02:00 |
|
Jonas Sicking
|
e3e5cefa61
|
Bug 483818: Remove the currently-running-script counter from the parser since it's hard to keep it correct when we're creating a new parser due to document.write etc. r/sr=mrbkap
|
2009-04-15 15:34:50 -07:00 |
|
Boris Zbarsky
|
68f2da9705
|
Backing out changeset ec2bec209571 and changeset 140f64990c51 (fix for bug 481566) due to test failures.
|
2009-04-04 01:55:51 -04:00 |
|
Jonas Sicking
|
7f33c641ea
|
[mq]: sinkstuff
|
2009-04-03 18:25:13 -07:00 |
|
Blake Kaplan
|
f01b4daf9c
|
Bug 444322 - Ignore OnDataAvailable calls when we're executing a script. r+sr=bzbarsky
|
2008-12-11 14:20:45 -08:00 |
|
Blake Kaplan
|
05459fcc86
|
Bug 455043 - Remove HTML3 quirks mode. r+sr=jst
|
2008-09-26 15:43:37 -07:00 |
|
|
|
5a3f9516a0
|
Make tagStack be an array of nsString instead of nsAutoString. Fixes bug 427941. r+sr=sicking, a=beltzner
|
2008-04-10 21:38:25 -07:00 |
|
|
|
38898aaf1b
|
Bug 386769 - "Make setting innerHTML faster". r=jst, sr=peterv, a=blocking1.9.
|
2008-02-08 14:07:51 -08:00 |
|
|
|
993fceabac
|
Bug 403549: Avoid memory churn from nsContentUtils::CreateContextualFragment by giving nsIParser::ParseFragment a better signature. r/sr=stuart
|
2007-11-12 17:41:40 -08:00 |
|
|
|
48904665ed
|
Update UUID for nsIParser
|
2007-06-26 17:41:30 -07:00 |
|
|
|
bdddb68f6a
|
Bug 384898: Cleanup nsScanner. r=mrbkap, sr=jst
|
2007-06-26 17:21:47 -07:00 |
|
mrbkap@gmail.com
|
6d8d9d0d31
|
Remove the obsolete concept of "DTD verification". bug 323958, r+sr=jst
|
2006-01-30 23:45:19 +00:00 |
|
mrbkap@gmail.com
|
6d25fd2467
|
bug 324738: Remove some unnecessary complexity from the parser and hardcode DTDs. r=sicking sr=jst
|
2006-01-26 19:07:41 +00:00 |
|