Mats Palmgren
|
d5826be6d7
|
Bug 786533 - Replace NS_MIN/NS_MAX with std::min/std::max and #include <algorithm> where needed. r=ehsan
|
2013-01-15 13:22:03 +01:00 |
|
Mounir Lamouri
|
af0ede0616
|
Bug 777283 - Adds <input type='time'> behind "dom.experimental_forms" pref. r=smaug
|
2013-01-08 17:10:00 +00:00 |
|
David Zbarsky
|
5f2db29ba0
|
Bug 827197 - Remove some uses of nsIDOMSVGElement subclasses r=longsonr
|
2013-01-07 22:22:41 -05:00 |
|
Raphael Catolino
|
5c4e542449
|
Bug 769385 - Add type attribute date for <input> behind "dom.experimental_forms" pref. r=mounir
|
2012-12-27 16:06:53 +00:00 |
|
Andrew Quartey
|
6eb0ddf707
|
Bug 792581 - part 22: Replace LL_ZERO and LL_Zero() macros with 0. r=ehsan
|
2012-10-25 19:25:59 -04:00 |
|
Nick Hurley
|
e7f284c9d3
|
Bug 536324 part 3 - Change consumers of nsIChannel. r=sworkman
|
2012-10-22 10:51:07 -07:00 |
|
Peter Van der Beken
|
12024180f9
|
Fix for bug 799464 (Make Element.getElementsBy* return HTMLCollection). r=bz.
--HG--
extra : rebase_source : fe059b8ad3b98df9e611899832584cc866db0479
|
2012-09-26 16:17:47 +02:00 |
|
Boris Zbarsky
|
8d820d7bd3
|
Bug 749964. Don't try to save if what we have is not a real document object. r=khuey
|
2012-10-05 22:39:46 -04:00 |
|
Josh Matthews
|
f56c4d461a
|
Bug 794602 - Make nsWebBrowserPersist::SaveURIInternal use channels with valid privacy statuses. r=bz,mfinkle,smaug,ehsan,jwalker,roc,unfocused
|
2012-10-04 15:07:51 -04:00 |
|
Ryan VanderMeulen
|
d3510ae5f7
|
Backout e5269e137290, (bug 794606), e94dbc151121 (bug 794602), and 0ea0cfc7f6f4 (bug 792821) due to mochitest-other orange on a CLOSED TREE.
|
2012-10-04 19:34:19 -04:00 |
|
Josh Matthews
|
fe1c85126f
|
Bug 794602 - Make nsWebBrowserPersist::SaveURIInternal use channels with valid privacy statuses. r=bz,mfinkle,smaug,ehsan,jwalker,roc,unfocused
|
2012-10-04 15:07:51 -04:00 |
|
Andrew Quartey
|
3f451d58b7
|
Bug 788741 - Truncate file extension if too long r=bz
|
2012-09-18 16:45:51 -04:00 |
|
Makoto Kato
|
507b76f776
|
Bug 784912 - nsIStreamListener.onDataAvailable should handle 64-bit offset. r=honza
|
2012-09-06 11:41:02 +09:00 |
|
Randell Jesup
|
29ac5c0b8c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Ehsan Akhgari
|
8c296bbcd4
|
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
|
4c54d98fcb
|
Bug 782252 - Change named constants to correct types; r=ehsan
|
2012-08-07 18:11:35 +03:00 |
|
Aryeh Gregor
|
072c3e10ea
|
Bug 782252 - Convert declared types to nsresult; r=ehsan
|
2012-08-06 15:02:31 +03:00 |
|
Aryeh Gregor
|
982100775b
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
Mike Hommey
|
c1b35e7b2a
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Mounir Lamouri
|
5885dd639e
|
Bug 635498 - Make <input type='number'> behaves like <input type='text'>. r=sicking
--HG--
extra : rebase_source : 0754f845fd6223cd48ca8908ebf642636f0fd9ed
|
2012-06-10 22:23:17 +02:00 |
|
Geoff Lankow
|
1214b72681
|
Bug 749930 - Replace uses of nsILocalFile with nsIFile (compiled code only); r=bsmedberg
|
2012-06-06 14:08:30 +12:00 |
|
Gervase Markham
|
87620f5676
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Jason Duell
|
bf6809bf96
|
Bug 752675: Fix docs for nsIWebBrowserPersist::PERSIST_FLAGS_FROM_CACHE. r=bz
|
2012-05-08 18:02:32 -07:00 |
|
Henri Sivonen
|
95c3b0eac7
|
Bug 650784 part 0 - Fold nsParserUtils into nsContentUtils. r=smaug.
|
2012-02-27 13:57:48 +02:00 |
|
Matthew Schranz
|
62d6dff935
|
Bug 698381 - Make Node.cloneNode aDeep argument optional, default to true. r=smaug
|
2012-02-23 14:23:30 +01:00 |
|
Ehsan Akhgari
|
2a602a5685
|
Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
|
2011-10-17 10:59:28 -04:00 |
|
Jeff Walden
|
b7753477cf
|
Bug 693469 - Implement mozilla::ArrayLength and mozilla::ArrayEnd, and replace uses of NS_ARRAY_LENGTH whenever possible. (Exceptions: assigning to static initializers, use in static assertions, as template parameters, etc. These will go away when the relevant compilers have C++11 constexpr support.) r=cjones
--HG--
extra : rebase_source : b4bae9a0f85abf2feb828609b50e756916b99a6f
|
2011-10-10 22:50:08 -07:00 |
|
Jeff Walden
|
eb2cb918a4
|
Back out everything since 5435ee09cf7b. Tinderbox compilers hate me. r=epic-fail
|
2011-10-12 12:21:53 -07:00 |
|
Jeff Walden
|
77ebbde4ab
|
Bug 639469 - Implement mozilla::ArrayLength and mozilla::ArrayEnd, and replace uses of NS_ARRAY_LENGTH whenever possible. r=cjones
--HG--
extra : rebase_source : 860a8271bf7e51cde358f2a4185c410de1fc2960
|
2011-10-10 22:50:08 -07:00 |
|
Michael Wu
|
d8e503c38b
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
|
2011-09-28 23:19:26 -07:00 |
|
Ms2ger
|
d377c55ed2
|
Bug 677101, part c - Reduce nsIDOMText.h inclusions; r=volkmar
|
2011-08-11 15:29:58 +02:00 |
|
Jonas Sicking
|
17ec46a39a
|
Bug 659053 Part 1: Merge nsIDOM3Node into nsIDOMNode. Also removes Node.getFeature. r=peterv
|
2011-06-14 00:56:48 -07:00 |
|
Ed Morley
|
9e71e5b9ac
|
Bug 614515 - Remove MOZ_SVG conditions. r=roc
|
2011-05-30 09:34:50 +02:00 |
|
Ms2ger
|
b171b9ae5c
|
Bug 658906 - Remove nsIDOMNSDocument; r=sicking
|
2011-05-28 09:43:53 +02:00 |
|
Christian Biesinger
|
c93ab7d02c
|
Bug 576006 - Implement timing interface for channels
r=jduell sr=bz
|
2011-05-21 03:03:36 -07:00 |
|
Ed Morley
|
d260544670
|
Bug 316661 - Part A - Remove null-checks before delete. r=bsmedberg
|
2011-05-17 16:01:36 +02:00 |
|
Ms2ger
|
d5df8a6e33
|
Bug 655514 - Remove nsIDOMDocumentTraversal; f=ehsan r=jonas
|
2011-05-15 12:07:30 +02:00 |
|
Ed Morley
|
082d53f39b
|
Bug 655756 - Remove final XP_MAC remnants; r=josh
|
2011-05-10 20:24:48 +02:00 |
|
Daniel Holbert
|
3cb4613509
|
Bug 654372: Fix nsWebBrowserPersist constructor init list order to fix build warning. r=ehsan
|
2011-05-04 09:27:19 +02:00 |
|
Ehsan Akhgari
|
73dd5db57d
|
Bug 646071 - Part 3: Remove nsInt64.h, and convert all uses of nsInt64 and nsUint64 in the tree to PRInt64 and PRUint64, respectively; r=bsmedberg
|
2011-03-31 20:15:27 -04:00 |
|
Ehsan Akhgari
|
49fceed112
|
Backout the latest cedar merge wholesale until I test the correctness of the merge locally. This commit takes the tree state back to changeset 8d3f6093c425 (the last known good changeset before the merge)
|
2011-04-01 12:23:48 -04:00 |
|
Ehsan Akhgari
|
f4575bfe5e
|
Bug 646071 - Part 3: Remove nsInt64.h, and convert all uses of nsInt64 and nsUint64 in the tree to PRInt64 and PRUint64, respectively; r=bsmedberg
|
2011-03-31 20:15:27 -04:00 |
|
Dan Witte
|
c4091d7694
|
Back out Bug 536324 part 3.
|
2010-08-30 13:20:39 -07:00 |
|
Dan Witte
|
5f4dbe5953
|
Bug 536324 - e10s HTTP: refactor nsHashPropertyBag. Part 3: contentLength consumers. r=jduell, a=beta5+
|
2010-08-21 00:31:35 -07:00 |
|
Mounir Lamouri
|
ef6632684a
|
Bug 344615 - Implement <input type="url">. r=sicking, sr=smaug a2.0=blocking
|
2010-08-18 20:33:37 +02:00 |
|
Mounir Lamouri
|
17e57ca845
|
Bug 555559 - Implement <input type="email">. r=smaug,sicking sr=jst a2.0=blocking
|
2010-08-18 20:31:54 +02:00 |
|
Chris Double
|
e38260e9d9
|
Bug 449141. Save media resources when doing 'Save As' on the page. r=roc,a=dbaron
|
2010-08-19 21:35:09 +12:00 |
|
Mitchell Field
|
eb1e793da7
|
Remove @status FROZEN and @status UNDER_REVIEW. r=bsmedberg
--HG--
extra : rebase_source : 7fab31a6b7898e05ff828482390846cc9ce2854d
|
2010-07-02 10:27:06 -04:00 |
|
Mounir Lamouri
|
a821ae13af
|
Bug 456229 - Implement <input type="search">. r=smaug sr=sicking
|
2010-05-17 12:20:22 +02:00 |
|