Matt Brubeck
|
8f85d6a619
|
Back out ae2e45d25a1a, 4f144a06d0cc, 2e80be1d7d18 (bug 716575) for Android Talos red
|
2012-09-17 11:11:30 -07:00 |
|
Matt Brubeck
|
f4948932bf
|
Bug 716575 (4/4) - Tests for GetViewportInfo [r=dbaron]
--HG--
extra : rebase_source : 906250f6fbe6ad8cf5e173f7f0e7622b2d75c1b3
|
2012-09-10 18:53:24 -07:00 |
|
Tanvi Vyas
|
29c1c82c22
|
Bug 62178 - Mochitest - iframe, stylesheet, object, script, image, media, xhr (Disabled on android until ssl is supported), r=smaug
|
2012-09-16 20:53:01 -07:00 |
|
Andrea Marchesini
|
138320e12d
|
Bug 761227 - Support XMLHttpRequestParameters in workers. r=bent
|
2012-09-16 20:20:16 -04:00 |
|
Phil Ringnalda
|
ef3b931869
|
Back out 562ba2baa5b3 and 5065dd13b53d (bug 62178) for Android mochitest-1 failure
|
2012-09-16 15:24:58 -07:00 |
|
Tanvi Vyas
|
13011a50a1
|
Bug 62178 - Mochitest - iframe, stylesheet, object, script, image, media, xhr r=smaug
|
2012-09-16 13:13:25 -07:00 |
|
Phil Ringnalda
|
e91fd8ea3f
|
Backout 38052fd23aec, 910406b62ebc, 7b15c079564c, d7c1d26f8bc9 (bug 716575) for probable reftest and certain talos bustage on Android
|
2012-09-10 20:57:31 -07:00 |
|
Matt Brubeck
|
6cd86ad5d7
|
Bug 716575 (4/4) - Tests for GetViewportInfo [r=dbaron]
|
2012-09-10 18:53:24 -07:00 |
|
Boris Zbarsky
|
0644c2b46d
|
Bug 788369 followup. Fix test to reflect the new world. r=bustage
|
2012-09-07 12:11:04 -04:00 |
|
Boris Zbarsky
|
d134bc7fd5
|
Bug 780529. Make people poking XHR via random XPCOM interfaces actually work as long as they stick to GetInterface. r=peterv
|
2012-09-07 10:51:35 -04:00 |
|
John Schoenick
|
6c657c7493
|
Backout a6f040934c99 (Bug 548133) for reftest orange
|
2012-09-05 14:58:17 -07:00 |
|
John Schoenick
|
89dd8205be
|
Bug 548133 - Remove special handling for object 'pluginurl' param. r=dolske,josh
|
2012-09-05 14:02:06 -07:00 |
|
Randell Jesup
|
eedf93a21d
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Abhishek Potnis
|
0df3829f77
|
Bug 785319 - Don't throw when setting WebSocket.binaryType to an invalid value; f=Ms2ger r=smaug
--HG--
extra : rebase_source : 2153ba6ecd98583e09c83208949e5f78042c0e37
|
2012-08-25 16:57:59 +05:30 |
|
Jonas Sicking
|
c16e6a81aa
|
Bug 689328: Try to fix intermittent orange in test_xhr_progressevent.html by waiting until "close" requests finish before starting next request. r=khuey
|
2012-08-31 18:34:33 -03:00 |
|
Kyle Huey
|
c25f8e64ef
|
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 |
|
Olli Pettay
|
ec8a1d0493
|
Bug 784259 - nsDOMMutationObserver should inherit nsWrapperCache, r=peterv
|
2012-08-28 18:25:19 +03:00 |
|
Andrea Marchesini
|
4924648d1f
|
Bug 782342 - blob: protocol no Content-Length header. r=sicking
|
2012-08-27 19:34:29 -04:00 |
|
Phil Ames
|
cd2459e50f
|
Bug 690168. Implement the 'Allow-From' directive for X-Frame-Options. r=bzbarsky
|
2012-08-27 15:46:24 -04:00 |
|
Marshall Moutenot
|
bb2f4a9d43
|
Bug 784315 - fix CSP parser to handle single-token hosts via regex correctly. r=geekboy
|
2012-08-27 08:51:02 -07:00 |
|
Philipp von Weitershausen
|
5801c8b2ab
|
Bug 776825 - Separate message managers into senders and broadcasters. r=smaug
--HG--
rename : content/base/public/nsIFrameMessageManager.idl => content/base/public/nsIMessageManager.idl
|
2012-08-27 11:13:02 -03:00 |
|
Bobby Holley
|
7d93b33884
|
Bug 784560 - Fix more tests. r=mccr8
|
2012-08-23 11:45:28 -07:00 |
|
Ehsan Akhgari
|
0fd9123eac
|
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 |
|
Gregor Wagner
|
fc14a541a1
|
Bug 781331 - Hook up systemXHR to permissions manager. r=sicking
|
2012-08-17 17:42:00 -07:00 |
|
Sid Stamm
|
8b2cf899c7
|
Bug 783497 - Fix CSPSource expression intersection to resolve "self" data. (r=jst)
|
2012-08-17 15:03:24 -07:00 |
|
Marshall Moutenot
|
ae371ade93
|
Bug 737064 - sync CSP source-expression parsing with w3c spec (r=geekboy)
--HG--
extra : rebase_source : 895ec1b90e688f14e5c19af1411c4b2631cbc818
|
2012-08-16 11:02:17 -07:00 |
|
Ed Morley
|
9cdd0db8cb
|
Merge mozilla-central to mozilla-inbound
|
2012-08-15 19:00:48 +01:00 |
|
Gregor Wagner
|
f79e6cb659
|
Bug 781355 - Hook up mozBrowser to Permission Manager. r=jlebar
|
2012-08-15 10:22:30 -07:00 |
|
Ed Morley
|
42369890c2
|
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
|
2012-08-15 16:17:53 +01:00 |
|
Olli Pettay
|
aeda425867
|
Bug 780199 - better mutationobserver handling when attribute value doesn't change, r=sicking
|
2012-08-15 13:06:01 +03:00 |
|
Mark Capella
|
7e0b8d3bac
|
Bug 772272 - Remove do_load_httpd_js from xpcshell tests, Misc Folders, r=ted
Content, DOM, Image, JS, RDF, and URILoader folders
|
2012-08-14 10:06:17 -04:00 |
|
Bobby Holley
|
ef3a2ff757
|
Bug 781521 - Fix Message Manager blob test. r=Ms2ger
|
2012-08-14 20:54:33 -07:00 |
|
Alexandre D'Eschambeault
|
7d7c542db1
|
Bug 751452 - Prevent DNT modification in unprivileged mode + test case. r=khuey
|
2012-08-13 22:47:19 -04:00 |
|
Simon Montagu
|
f8086abda8
|
Tests for dir(ltr/rtl) CSS selector. bug 562169, r=bz
|
2012-04-17 07:01:29 +03:00 |
|
Bobby Holley
|
364da93593
|
Bug 778420 - Fix up tests that don't like the new enablePrivilege. r=jmaher
--HG--
extra : rebase_source : 1158df4a4eb917074204e649efd8f2b8e699f115
|
2012-08-03 22:19:54 +02:00 |
|
William Chen
|
7a0429e652
|
Bug 778420 - Initial stab at the tests. v2 r=bholley
--HG--
extra : rebase_source : c24abc031c82a87f2f669e4b708f8ee364a9682b
|
2012-08-06 22:15:49 +02:00 |
|
Gijs Kruitbosch
|
373fda679f
|
Bug 778420 - Fix test_bug372964. r=bholley
--HG--
extra : rebase_source : 7d87cacdf187e743f40b6d56741e7d71101b58ec
|
2012-08-03 22:19:54 +02:00 |
|
Matt Brubeck
|
3697f5b568
|
Back out bug 562169 because of Dromaeo DOM regressions
Backed out changeset 841cd6e1e585 (bug 562169)
Backed out changeset e226e413dd27 (bug 562169)
Backed out changeset 9c24b7287c5b (bug 562169)
|
2012-08-08 08:14:48 -07:00 |
|
Simon Montagu
|
aa33182913
|
Tests for dir(ltr/rtl) CSS selector. bug 562169, r=bz
|
2012-04-17 07:01:29 +03:00 |
|
Mike Hommey
|
6173fa297f
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Ben Turner
|
0010e82b08
|
Bug 759427 - 'Multiprocess blob support for MessageManager and IndexedDB'. r=smaug+janv+khuey (rs=sicking for nsBlobURI changes).
--HG--
extra : transplant_source : %95%B5y%11%C5%AB%D9%CF%FF%7C%5E%BB%E5%DA%F5j%83o%29%EB
|
2012-08-01 23:02:29 -07:00 |
|
Ehsan Akhgari
|
b40b21d633
|
Merge the nullptr conversion from mozilla-central into mozilla-inbound
|
2012-07-30 10:28:15 -04:00 |
|
Aryeh Gregor
|
e806eeab4f
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Masatoshi Kimura
|
b79ee47058
|
Bug 750241 - Filter console messages to prevent intermittent orange; r=hsivonen
|
2012-07-30 12:47:19 +01:00 |
|
Mark Capella
|
a4e84ebc03
|
Bug 730925 - XHR.getAllResponseHeaders should use CRLF, not LF per spec, r=jst, r=jonas, f=ms2ger
|
2012-07-26 11:55:23 -04:00 |
|
Patrick McManus
|
69378be6f2
|
bug 767005 backout bug 235853 r=jduell
--HG--
extra : rebase_source : c5aee6699ad20b85c11d52ca70365d6adebaec7c
|
2012-07-24 22:40:34 -04:00 |
|
Boris Zbarsky
|
8b318ef3f7
|
Bug 761278. Remove the non-standard uploadprogress event on XMLHttpRequest. r=sicking
|
2012-07-21 22:28:26 -04:00 |
|
Jason Duell
|
00135ee99f
|
Backout f142f32a98a3 (Bug 775317) and ef14686c31d0 (Bug 761278). r=bustage
|
2012-07-21 20:05:37 -07:00 |
|
Boris Zbarsky
|
eb0d24fee5
|
Bug 761278. Remove the non-standard uploadprogress event on XMLHttpRequest. r=sicking
|
2012-07-21 22:28:26 -04:00 |
|
Ryan VanderMeulen
|
544438a9ef
|
Merge the last PGO-green inbound changeset to m-c.
|
2012-07-10 18:39:12 -04:00 |
|