Nathan Froyd
|
3c013d928f
|
Bug 720768 - add nsDOMEventTargetHelper::DispatchTrustedEvent; r=mounir, sr=smaug
|
2012-09-27 16:11:31 -04:00 |
|
Isaac Aggrey
|
a53c93b026
|
Bug 795351: Replace LL_MAXINT, LL_MININT, LL_MAXUINT with stdint versions; r=ehsan
|
2012-09-28 14:55:23 -05:00 |
|
Isaac Aggrey
|
0cc4b12d36
|
Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan
|
2012-09-28 01:57:33 -05:00 |
|
Andrea Marchesini
|
54ca221582
|
Bug 793311 - Crash in nsDOMFileFile::nsDOMFileFile. r=khuey
|
2012-09-25 11:04:25 -04:00 |
|
Bobby Holley
|
5af5a73d3d
|
Bug 792036 - Automated fixups. r=mccr8
find /files/mozilla/build/d/_tests/testing/mochitest/tests/ | egrep "\.(xhtml|html|xml|js)$" | grep -v SimpleTest | grep -vi mochikit | grep -v simpleThread | grep -v test_ipc_messagemanager_blob.html | grep -v "indexedDB/test" | xargs grep -l Components | xargs grep -L enablePrivilege | perl -pe 's#.*mochitest/tests/##' | xargs perl -p -i.bakkk -e 's/Components\.interfaces(\s|;|\.|\[)/SpecialPowers\.Ci$1/g, s/SpecialPowers\.wrap\(Components\)\.(.)(lasses|tils|nterfaces|esults)/SpecialPowers.C$1/g, s/(?<![\.a-zA-Z])Components/SpecialPowers\.Components/g, s/window\.Components/window\.SpecialPowers\.Components/g'
|
2012-09-24 14:46:29 +02:00 |
|
Kyle Huey
|
e5ed756507
|
Bug 793434. r=smaug
|
2012-09-22 12:45:03 -07:00 |
|
Nathan Froyd
|
9b227bf10d
|
Bug 786703 - fix dom/ build failures from introducing PARALLEL_DIRS; r=glandium
|
2012-09-11 07:47:42 -04:00 |
|
Ms2ger
|
348aa6b524
|
Bug 782040 - Move ProgressEvent to event impl codegen; r=smaug
|
2012-09-06 09:14:49 +02:00 |
|
Kyle Huey
|
0baaffe99f
|
Bug 687332: Part 2 - Move event handlers off of DOM objects and keep track of them solely in the event listener manager. r=smaug,bz
|
2012-08-30 20:45:16 -07:00 |
|
Andrea Marchesini
|
be0cc154e5
|
Bug 784190 - Fix Cycle collection casting in DOMRequest, r=mccr8
|
2012-08-27 09:44:25 -07:00 |
|
Nathan Froyd
|
4c779437cc
|
Bug 783357 - part 1: add XPIDL_FLAGS to make idl dependencies more explicit; r=khuey
|
2012-08-24 16:01:30 -04:00 |
|
Luke Wagner
|
ce71e55555
|
Bug 625199 - s/JSAutoEnterCompartment/JSAutoCompartment/ and make it infallible (r=bholley)
--HG--
extra : rebase_source : 12acf2288285f5caefd7fecea8207de3a47eab5b
|
2012-08-21 18:42:53 -07: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
|
0fa7382bf9
|
Bug 783863 - ArchiveInputStream::Tell incorrectly uses mStatus as an nsresult; r=baku
|
2012-08-21 14:56:39 +03:00 |
|
Andrea Marchesini
|
fdc7afa260
|
Bug 781153 - ArchiveReader doesn't support zip-in-zip archives, r=jst
|
2012-08-17 18:04:03 -07:00 |
|
Aryeh Gregor
|
982100775b
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
Honza Bambas
|
5fe7a22e2c
|
Bug 215450: Allow uploading of files greater than 2gb in size. Involves making input streams 64-bit capable. Significant work done by Makoto Kato, finished by Honza Bambas. r=hbambas,bsmedberg,jdrew,sicking
|
2012-08-10 22:44:11 -04:00 |
|
Wes Johnston
|
7d6f48a80c
|
backout c030a8af8abd and dd0c287660e9 CLOSED TREE
|
2012-08-08 14:07:39 -07:00 |
|
Wes Johnston
|
77f0fb11d6
|
Bug 780718 - Return false from DOMRequestService is preventDefault was called on events. r=sicking
|
2012-08-08 12:35:15 -07:00 |
|
Andrea Marchesini
|
c1fd039db1
|
Bug 780145 - ArchiveReader doesn't unzip large files, r=jst
|
2012-08-08 11:11:15 -07:00 |
|
Wes Johnston
|
154f83ab5b
|
Backout 81a090e983d2, 8236b3579bf3,
|
2012-08-07 10:08:41 -07:00 |
|
Wes Johnston
|
65f5d9906e
|
Bug 780718 - Return false from DOMRequestService is preventDefault was called on events. r=sicking
|
2012-08-06 15:26:02 -07:00 |
|
Ms2ger
|
c861fd0028
|
Bug 743573 - Fix a number of build warnings in dom/; r=mounir
|
2012-08-07 09:06:29 +02:00 |
|
Aryeh Gregor
|
5662d18449
|
Bug 780469 - Reduce unnecessary includes in some content/ header files; r=bz
|
2012-08-06 15:02:08 +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 |
|
Mike Hommey
|
be451c22dc
|
Backout changeset 2ef51674316a (bug 774032 bonus) for various Mochitest bustages on a CLOSED TREE
|
2012-08-04 10:38:41 +02:00 |
|
Mike Hommey
|
e79d87471e
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 08:48:56 +02:00 |
|
Eric Faust
|
b1b08f985c
|
Bug 742188 - Implement ToInt64 and ToUint64 per the WebIDL standard. (r=jorendorff)
|
2012-08-03 15:15:04 -07:00 |
|
Jan Varga
|
ee4312324e
|
Bug 778023 - Need to figure out how cycle collected DOM files are supposed to play with workers. r=bent. Make worker.postMessage() to just throw for now.
|
2012-08-02 07:34:26 +02:00 |
|
Eric Faust
|
6d4e293e26
|
Bug 752223 - Implement JS_NumberValue(), replacing JS_NewNumberValue(). (r=luke)
|
2012-08-01 17:59:47 -07:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
David Zbarsky
|
31ad6987b4
|
Fix virtual destructor warnings under dom/file, no bug, blanket r=bz
|
2012-07-28 17:33:58 -07:00 |
|
Andrea Marchesini
|
eb9e3170b2
|
Bug 772434 - Blob support for Zip file contents, r=jst
|
2012-07-27 17:21:34 -07:00 |
|
Olli Pettay
|
c992398490
|
Bug 765163 - Implement code generator for simple DOM events, r=jst,khuey
|
2012-07-20 19:42:08 +03:00 |
|
David Zbarsky
|
7f0f075928
|
[Bug 774505] Don't include Layers.h everywhere r=cjones
|
2012-07-18 12:31:40 -04:00 |
|
Jan Varga
|
2d731c29c7
|
Bug 771498 - FileHandle: getFile() should return a DOMRequest (instead of a FileRequest). r=sicking
|
2012-07-10 07:07:01 +02:00 |
|
Nathan Froyd
|
5b30baa4c3
|
Bug 370750 - consolidate mochitest files installation; r=glandium
With assistance on the patch from Ms2ger, Waldo, and Mossop.
|
2012-07-03 16:49:02 -04:00 |
|
Ben Turner
|
b5f82bb601
|
Bug 758357 - Only show prompt after 50mb of quota was reached. r=sicking
|
2012-07-05 14:11:48 -07:00 |
|
Chris Pearce
|
a4d428d1ed
|
Bug 758357 - Backout 6763477075a4 for causing bug 770085. r=backout
|
2012-07-02 16:49:07 +12:00 |
|
David Zbarsky
|
cd3c58ee76
|
Bug 763350 - Clean up some includes in content/ and dom/ r=smaug
|
2012-07-01 16:45:59 -07:00 |
|
Jonas Sicking
|
2520cd812f
|
Attempt at fixing orange due to setting wrong permission in test. Bug 758357
|
2012-06-30 20:58:13 +02:00 |
|
Kyle Huey
|
d3b6b42885
|
Bug 726378: Unprefix IndexedDB. r=sicking
|
2012-06-29 09:48:35 -07:00 |
|
Ben Turner
|
bfa7cae37b
|
Bug 765839 - 'Enable IndexedDB OOP test suite'. r=khuey.
--HG--
extra : transplant_source : %3Bb4%A4%99fC%9Cg%86%9B%1F3%C6%0F%01T%1C%3C%AE
|
2012-06-19 18:50:39 -07:00 |
|
Ryan VanderMeulen
|
c5934032a4
|
Merge m-c to inbound.
|
2012-06-18 20:59:17 -04:00 |
|
Jan Varga
|
2dc0f54692
|
Bug 763388 - Remove enablePrivilege calls from IndexedDB and FileHandle tests. r=bent
|
2012-06-18 19:09:26 +02:00 |
|
Landry Breuil
|
4315784a73
|
Bug 761159 - Fix build on OpenBSD, use correct int64_t type. r=janv
|
2012-06-17 17:49:35 +02:00 |
|
Jan Varga
|
1755b5a85c
|
Bug 761159 - FileHandle: Better handling of the end of file state. r=sicking
|
2012-06-17 05:36:54 +02:00 |
|
Ryan VanderMeulen
|
b74e4a29db
|
Revert c39d36167b99 due to a horribly munged backout.
|
2012-06-10 19:44:50 -04:00 |
|
Ryan VanderMeulen
|
061d4c2616
|
Backout the bug 754202 backout due to orange.
|
2012-06-10 19:37:47 -04:00 |
|
Olli Pettay
|
94414ed431
|
Bug 761613 - Merge nsIPrivateDOMEvent to nsIDOMEvent, r=jst
|
2012-06-10 21:14:30 +03:00 |
|