Commit Graph

207923 Commits

Author SHA1 Message Date
Nicolas B. Pierron
2f855ebf20 Bug 1074911 - Remove JS_ASSERT and JS_ASSERT_IF macros. r=jorendorff 2014-10-01 19:17:53 +02:00
Nicolas B. Pierron
98d0cceacd Bug 1074911 - Replace JS_ASSERT_IF by MOZ_ASSERT_IF. r=jorendorff
Apply the following script

sed -i '
   /JS_ASSERT_IF(/ {
     s/JS_ASSERT_IF(/MOZ_ASSERT_IF(/;
     :b;
     s/ \\$/\\/;
     /;/ { p; d; };
     n;
     s/^/ /;
     b b;
  };
  s/JS_ASSERT_IF (/MOZ_ASSERT_IF(/;
'
2014-10-01 19:17:53 +02:00
Nicolas B. Pierron
8b681bc06c Bug 1074911 - Replace JS_ASSERT by MOZ_ASSERT. r=jorendorff
Apply the following script

sed -i '
   /JS_ASSERT(/ {
     s/JS_ASSERT(/MOZ_ASSERT(/;
     :b;
     s/ \\$/\\/;
     /;/ { p; d; };
     n;
     s/^/ /;
     b b;
  };
  s/JS_ASSERT (/MOZ_ASSERT(/;
'

Except where the JS_ASSERT macro does not end with a semi-colon, where empty
lines are in the middle of the macro, and where the backslahes are always the
same-length after the expression.
2014-10-01 19:17:51 +02:00
Kartikaya Gupta
937969f83c Bug 1074944 - Update APZ code to use Matrix4x4::Inverse() where possible. r=nical 2014-10-01 13:13:05 -04:00
Kartikaya Gupta
ed98d7c059 Bug 1074944 - Add Inverse functions on Matrix and Matrix4x4. r=Bas 2014-10-01 13:13:02 -04:00
Ryan VanderMeulen
5cbfa3c2ce Backed out changeset 11f95edf23a4 (bug 1073615) for frequent mochitest-bc timeouts. 2014-10-01 13:04:02 -04:00
Bill McCloskey
5dce329156 Bug 1059007 - [e10s] Enable most session store tests (r=ttaubert) 2014-10-01 09:58:56 -07:00
Bill McCloskey
67019bd0ca Bug 1071409 - Eliminate potential CPOW hang (r=dvander) 2014-10-01 09:58:54 -07:00
Ryan VanderMeulen
4e1760bcb2 Backed out 11 changesets (bug 1065185) for Gaia Python integration test failures on a CLOSED TREE.
Backed out changeset a45d02c3b4e8 (bug 1065185)
Backed out changeset bb7b8b0da990 (bug 1065185)
Backed out changeset 7672d57acbad (bug 1065185)
Backed out changeset fbdb5bead639 (bug 1065185)
Backed out changeset 54d6077015da (bug 1065185)
Backed out changeset e2528549de9d (bug 1065185)
Backed out changeset 981c0b7c897d (bug 1065185)
Backed out changeset 903fbf9bb0c7 (bug 1065185)
Backed out changeset 76e863b63dd8 (bug 1065185)
Backed out changeset 6871aff5d103 (bug 1065185)
Backed out changeset cc213ad991a8 (bug 1065185)
2014-10-01 12:33:30 -04:00
Till Schneidereit
b37a790e75 Bug 1067942 - Change error message for attempted getter-only property writes to include the property name. r=terrence,Ms2ger
--HG--
extra : rebase_source : ebe2b8d794145d96198235151de70b2b3dbc846e
2014-09-30 01:17:55 +02:00
Bobby Holley
3b58397a4e Bug 1067009 - Tests. r=billm 2014-10-01 17:22:16 +02:00
Bobby Holley
ec9f41d32b Bug 1067009 - Implement regexp_toShared for CPOWs. r=billm 2014-10-01 17:22:15 +02:00
Bobby Holley
f76176b5cc Bug 1067009 - Don't assume that someRegExp.source is an atom. r=billm 2014-10-01 17:22:15 +02:00
Bobby Holley
044a6e11f4 Bug 1067009 - Make JSAPI RegExp accessors work correctly proxies. r=billm 2014-10-01 17:22:15 +02:00
Bobby Holley
b92b16618f Bug 1067009 - Const-correct a few jsapi methods. r=billm 2014-10-01 17:22:14 +02:00
Carsten "Tomcat" Book
7321b37f56 Backed out changeset 0a308311d9a7 (bug 1056409) for wrong commit message on a CLOSED TREE 2014-10-01 17:16:42 +02:00
Boris Zbarsky
71aa733b4f Bug 1065185 followup: expose the indexed prop we're trying to access in this test to reopen the CLOSED TREE 2014-10-01 11:14:39 -04:00
ziyunfei
9c3d9bdfd0 Bug 1075294 - Object.seal() should return its argument with no conversion when the argument is a primitive value. r=till 2014-10-01 04:30:00 +02:00
James Long
ab8ef4df2e Date: Fri Sep 26 11:30:08 2014 -0400
Bug 1056409 - move the sourceMapURL property to the Debugger.Source object. r=jorendorff
2014-09-30 10:03:00 +02:00
Mike Quested
9771a4401e Bug 847072 - Regex test for Java plugin name, output "Java" instead of whole version string. r=mconley 2014-10-01 04:09:00 +02:00
mycoolclub
e9eac9eb85 Bug 506815 - Replace old MouseTrailer code with TrackMouseEvent api. r=jimm 2014-10-01 02:38:00 +02:00
Christoph Kerschbaumer
073134d782 Bug 1070732 - CSP: log warning if csp-report is not sent using http or https (r=sstamm) 2014-09-21 09:13:54 -07:00
Christoph Kerschbaumer
ee5b70e123 Bug 1000945 - CSP: Remove unused strings from csp.properties (r=sstamm) 2014-08-13 21:40:36 -07:00
Sotaro Ikeda
3777979c62 Bug 1075136 - Initialize TileClient::mCompositableClient correctly r=nical 2014-10-01 07:16:32 -07:00
Andrea Marchesini
3cf69cdc04 Bug 1074963 - Constructor URLSearchParams() should preserve the order of pairs from passing argument, r=bz 2014-10-01 14:55:33 +01:00
Carsten "Tomcat" Book
9187bf9236 Merge m-c to mozilla-inbound 2014-10-01 15:41:25 +02:00
Bobby Holley
37fe5caf3b Bug 1065185 - Turn off indexed/.length access on COW arrays. r=bz 2014-10-01 15:25:02 +02:00
Bobby Holley
856dd13c4a Bug 1065185 - Do a better job of accessing privileged constants from voicemail marionette tests. r=bz 2014-10-01 15:25:01 +02:00
Bobby Holley
e47d00515f Bug 1065185 - Create a content Array rather than a chrome Array in _convertWifiNetworks. r=chucklee 2014-10-01 15:25:01 +02:00
Bobby Holley
3b2e1a3754 Bug 1065185 - Create a content Array rather than a chrome array when reading Icc contacts. r=hsinyi
Right now, this array gets implicit __exposedProps__ for all of its indexed
members (and .length). Instead, we should be creating the Array directly in
the target Window.
2014-10-01 15:25:01 +02:00
Bobby Holley
5eaf64ea01 Bug 1065185 - Stop using Promise.jsm over SpecialPowers in marionette tests. r=bz 2014-10-01 15:25:01 +02:00
Bobby Holley
b11ba779ea Bug 1065185 - Explicitly expose indexed properties in COW array test. r=bz 2014-10-01 15:25:01 +02:00
Bobby Holley
0b73148be5 Bug 1065185 - Fix devtools actors. r=bz
See browser/devtools/canvasdebugger/test/browser_canvas-actor-test-02.js.
And note that we need to re-waive the result, otherwise we get failures in
browser/devtools/canvasdebugger/test/browser_canvas-actor-test-10.js.

See browser/devtools/shadereditor/test/browser_se_editors-contents.js for the
webgls stuff.
2014-10-01 15:25:00 +02:00
Bobby Holley
177fa0bc62 Bug 1065185 - Fix extension manager test. r=bz 2014-10-01 15:25:00 +02:00
Bobby Holley
759cb036c4 Bug 1065185 - Fix crash IPC tests. r=bz 2014-10-01 15:25:00 +02:00
Bobby Holley
e820231362 Bug 1065185 - Fix permissions tests. r=bz 2014-10-01 15:24:59 +02:00
Carsten "Tomcat" Book
1089eb43df merge b2g-inbound to mozilla-central a=merge 2014-10-01 15:05:31 +02:00
Carsten "Tomcat" Book
c474a3418d merge fx-team to mozilla-central a=merge 2014-10-01 14:59:31 +02:00
Benjamin Bouvier
1b86dbcbb4 Bug 1073064: SIMD: Add int32x4.shift{left,right,rightLogical} to asm.js; r=luke 2014-10-01 14:57:29 +02:00
Benjamin Bouvier
99d2d28c3d Bug 1073064: SIMD x86-x64 backend: Implement MSimdBinaryLogical; r=sunfish 2014-10-01 14:57:15 +02:00
Carsten "Tomcat" Book
da47864b8c merge mozilla-inbound to mozilla-central a=merge 2014-10-01 14:51:20 +02:00
Carsten "Tomcat" Book
8daf76f8e8 Backed out changeset a11adf1705ec (bug 982842) for causing bug 1075387 2014-10-01 14:41:56 +02:00
Gabor Krizsanits
7876c7d281 Bug 877072 - Script execution order for imports. r=mrbkap 2014-10-01 14:13:53 +02:00
Jesse Ruderman
86d131861c Bug 851418 - Crashtest. r=bholley 2014-10-01 13:52:44 +02:00
Bobby Holley
f9a35061fa Bug 853709 - Tests. r=mrbkap 2014-10-01 13:52:43 +02:00
Bobby Holley
5855ddc9f1 Bug 865948 - Tests. r=gabor 2014-10-01 13:52:43 +02:00
B2G Bumper Bot
e51f7a8f3c Bumping manifests a=b2g-bump 2014-10-01 02:12:00 -07:00
B2G Bumper Bot
e0636ea98f Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/aa3ab2d389dc
Author: Andrew Sutherland <asutherland@asutherland.org>
Desc: Merge pull request #24593 from asutherland/email-fix-pop3-attachments

Bug 1068116 - [email/POP3] email.js POP3 attachment regressions: binary attachments are corrupted on download and partially downloaded attachments are saved to disk. r=mcav

========

https://hg.mozilla.org/integration/gaia-central/rev/4e7ef92c8221
Author: Andrew Sutherland <asutherland@asutherland.org>
Desc: Bug 1068116 - [email/POP3] email.js POP3 attachment regressions: binary attachments are corrupted on download and partially downloaded attachments are saved to disk. r=mcav

land https://github.com/mozilla-b2g/gaia-email-libs-and-more/pull/342 in gaia
2014-10-01 02:05:49 -07:00
B2G Bumper Bot
e164aa2ab0 Bumping manifests a=b2g-bump 2014-10-01 01:58:58 -07:00
B2G Bumper Bot
f63c82b59a Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/76ae7a4140ab
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #24514 from crh0716/1074103

Bug 1074103 - Get supported network types every time when navigating to operator settings panel r=eragonj

========

https://hg.mozilla.org/integration/gaia-central/rev/7ad6c0240971
Author: Arthur Chen <crh0716@gmail.com>
Desc: Bug 1074103 - Get supported network types every time when navigating to operator settings panel
2014-10-01 01:58:44 -07:00