Commit Graph

143816 Commits

Author SHA1 Message Date
Kyle Huey
4fd557dbb9 Bug 887533: Remove even more includes from dom/bindings. r=bz 2013-08-22 22:17:11 -07:00
Ms2ger
79dd184c74 Bug 517765 - Mark make-source-package.sh as executable. 2013-08-23 19:35:54 +02:00
Kyle Huey
ec4aec4bd6 Bug 903772: Followup to address missed review comment. 2013-08-23 10:29:57 -07:00
Ian Stakenvicius
00cff60360 Bug 517765 - Add 'make source-package' support into js/src. r=sstangl 2013-08-22 12:38:18 -04:00
Bill McCloskey
ea4b0b506f Bug 908484 - Fix canCollect() exception in JS engine (r=bhackett) 2013-08-23 10:23:40 -07:00
Ehsan Akhgari
8efd8f6e71 Bug 908671 - Don't #include gfxMatrix.h in gfx3DMatrix.h; r=jrmuizel 2013-08-23 13:22:49 -04:00
Gregory Szorc
a4a96574c7 Bug 908296 - Upgrade psutil to version 1.0.1; rs=glandium 2013-08-23 10:18:57 -07:00
Ryan VanderMeulen
08f594ec2a Backed out changeset 0dad16fe66b2 (bug 517765) for Linux PGO bustage. 2013-08-23 13:17:07 -04:00
Ryan VanderMeulen
7ef3d29619 Backed out changesets 1ad8a6674785 and ed0b6a11532d (bug 908296) for OSX mach bustage. 2013-08-23 12:18:18 -04:00
Robert O'Callahan
00a701ff71 Bug 906199. Ensure that nsDisplayTransforms being bubbled up by preserve-3d have the correct clip applied. r=mattwoodrow
--HG--
extra : rebase_source : 565cbebb5a7db17949a34cd41c9f0018db781caf
2013-08-21 15:04:23 +12:00
Terrence Cole
49c80c8448 Bug 908483 - Fix some exact rooting hazards in jsd; r=jonco 2013-08-22 15:43:47 -07:00
Jon Coppeard
03edd99023 Bug 907135 - Disable verification of OSI point registers in rooting analysis builds r=nbp 2013-08-23 16:43:38 +01:00
Peter Van der Beken
618698c524 Bug 904147 - crash in mozilla::dom::WindowNamedPropertiesHandler::getOwnPropertyDescriptor. Let only nsLayoutStatics call nsGlobalWindow::ShutDown and nsDOMClassInfo::ShutDown. r=bz. 2013-08-19 18:46:06 +02:00
Adam Roach [:abr]
69b7aa1c8b Bug 880067 - Part 3: SDP negotiation of rtcp-fb r=ehugg 2013-08-22 13:18:38 -05:00
Adam Roach [:abr]
129f09e047 Bug 880067 - Part 2: Finish SDP Unit Tests r=ehugg 2013-08-22 13:18:38 -05:00
Geoff Brown
1aa6b9c2f8 Bug 908275 - Improve logging of xpcshell args in mochitests; r=jmaher 2013-08-23 09:11:43 -06:00
Geoff Brown
2ed6415994 Bug 908459 - Do not include TEST-INFO messages in robocop Passed count; r=jmaher 2013-08-23 09:11:38 -06:00
Geoff Brown
edcf1d4004 Bug 905344 - Change server port to -1 in test_load_module.js; r=waldo 2013-08-23 09:11:34 -06:00
Nathan Froyd
bcc0e038b7 Bug 906088 - part 6 - update tests to use the new API; r=kats 2013-08-21 11:58:52 -04:00
Nathan Froyd
dc5ea528d5 Bug 906088 - part 5 - send preference requests to JS through JNI and XPConnect rather than JSON; r=blassey,mfinkle 2013-08-16 12:18:43 -04:00
Nathan Froyd
d2c7a42e64 Bug 906088 - part 4 - refactor browser.js's getPreferences function into a JSON frontend and a "raw" backend; r=mfinkle 2013-08-16 11:48:31 -04:00
Nathan Froyd
a727e121b3 Bug 906088 - part 3 - add Preferences events to AndroidGeckoEvent; r=blassey 2013-08-16 11:24:30 -04:00
Nathan Froyd
25722da5f4 Bug 906088 - part 2 - factor out reading an nsString from a Java string in AndroidJavaWrappers.cpp; r=blassey 2013-08-16 11:15:27 -04:00
Nathan Froyd
303238ab30 Bug 906088 - part 1b - add ArrayList getPrefs method to PrefsHelper; r=bnicholson 2013-08-16 10:42:27 -04:00
Nathan Froyd
064e6210e6 Bug 906088 - part 1 - pass String[] to PrefsHelper.getPrefs wherever possible; r=blassey 2013-08-16 10:39:02 -04:00
Nathan Froyd
dbd0f67664 Bug 905759 - part 3 - delete browser.js code for receiving telemetry events from Java; r=mfinkle 2013-08-15 15:27:07 -04:00
Nathan Froyd
9122cd3c4d Bug 905759 - part 2 - add Telemetry-specific GeckoEvent and related machinery; r=blassey 2013-08-15 15:03:47 -04:00
Nathan Froyd
2589a50535 Bug 905759 - part 1 - add Telemetry infrastructure for telemetry gecko events; r=vladan 2013-08-15 15:04:15 -04:00
Jan-Ivar Bruaroey
251526239d Bug 906105 - Store external 0-based sdpMLineIndex rather than internal 1-based one. r=ehugg 2013-08-22 12:26:54 -04:00
Andy Wingo
bb8edee39e Bug 904701 - Implement prototype madness for ES6 generators. r=bhackett, r=jorendorff
Add a Generator constructor, like the Function constructor.

Define the GeneratorFunctionPrototype, GeneratorFunction, and
GeneratorObjectPrototype meta-objects.

When cloning or creating a star generator, give it
GeneratorFunctionPrototype as its prototype.

Each star generator function has a ".prototype" property, which has
GeneratorObjectPrototype as its prototype.  That prototype does not have
a ".constructor" link.

If Function.prototype.toSource is called on a non-function, chain up to
Object.prototype.toSource instead.

Prototypes of generator objects are no longer made with
GeneratorObject::class_.  This allows us to elide some "null" checks
from bug 352885.  Instead calling a generator on a method now signals a
typeerror.

Make the "send" generator method a simple alias to "next".
2013-08-23 11:07:10 -04:00
Cykesiopka
7549ab3ad1 Bug 547963 - Uncomment assertion in test_bug418464.html. r=hsivonen 2013-08-23 11:07:10 -04:00
Cykesiopka
7350a155ff Bug 528863 - Use _h instead of _h__ in include guards in the HTML5 parser. r=hsivonen 2013-08-23 11:07:10 -04:00
Ian Stakenvicius
6922532fd3 Bug 517765 - Add 'make source-package' support into js/src. r=sstangl 2013-08-22 12:38:18 -04:00
Ryan VanderMeulen
49dd0e9154 Merge b2g-inbound to m-c. 2013-08-23 10:50:14 -04:00
Ryan VanderMeulen
474bd8754b Merge inbound to m-c. 2013-08-23 10:44:50 -04:00
Gaia Pushbot
8077ba13eb Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/a96d83d7e0bb
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11701 from pivanov/bug-907186

Bug 907186 - [FMRadio] Star isn't centered on the button r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/a317014d8adc
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 907186 - [FMRadio] Star isn't centered on the button
2013-08-23 05:10:23 -07:00
Gaia Pushbot
3ea79f328e Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/e0bddefd0b19
Author: Kálmán KAMI Szalai <kami911@gmail.com>
Desc: Bug 905051 - Add Hungarian keyboard layout to Gaia. r=rudylu
2013-08-23 05:00:21 -07:00
Gaia Pushbot
424866ef6e Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/8663a82fd3f4
Author: You-Sheng Yang <vicamo@gmail.com>
Desc: Merge pull request #11690 from vicamo/bugzilla/905087/mms-version

Bug 905087 - Override MMS version to v1.1. r=steveck

========

https://hg.mozilla.org/integration/gaia-central/rev/c835ed38c18c
Author: You-Sheng Yang (楊有勝) <vicamo@gmail.com>
Desc: Bug 905087 - Gaia has no vCard/vCalednar for now, override MMS version to v1.1.
2013-08-23 04:35:21 -07:00
Gaia Pushbot
45360a5dcc Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c37eb57eb110
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11626 from crh0716/896376

Bug 896376 - Add a switch for enabling/disabling WAP Push r=evelyn

========

https://hg.mozilla.org/integration/gaia-central/rev/676f7522d7fc
Author: Arthur Chen <crh0716@gmail.com>
Desc: Bug 896376 - Add a switch for enabling/disabling WAP Push
2013-08-23 04:25:22 -07:00
Vicamo Yang
9f1fb0d1a5 Bug 905087 - B2G MMS: add integer pref "dom.mms.version". r=gene 2013-08-23 18:54:09 +08:00
Matt Woodrow
c5fe226ff7 Bug 907926 - Follow-up to make sure we only enable Azure on the platforms we meant to. 2013-08-23 20:12:30 +12:00
Gabor Krizsanits
73d41a24b4 Bug 886237 - follow-up part2: Comment formatting in sandbox.cpp. r=bholley 2013-08-23 09:56:03 +02:00
Gabor Krizsanits
be6a2be548 Bug 886237 - follow-up part1: Moving Sandbox/XPCComponents helpers into namespace xpc. r=bholley 2013-08-23 09:55:47 +02:00
Gregory Szorc
eb8ede35d6 Bug 908296 - Touch virtualenv file to force psutil rebuild; r=bustage 2013-08-23 00:40:45 -07:00
Chris Manchester
97d33c0cf5 Bug 908340 - Omit test start messages from mach xpcshell output; r=gps
--HG--
extra : rebase_source : 093f7a16df7de2b89868f0c255c3884b03cd70eb
2013-08-22 18:54:26 -07:00
Ryan VanderMeulen
3b872d79f6 Merge m-c to fx-team. 2013-08-22 20:48:10 -04:00
Felipe Gomes
db0715d956 Bug 907342 - Make navigation from about:newtab load in the remote process. r=ttaubert 2013-08-22 20:52:18 -03:00
Ehsan Akhgari
8cf0bde22a Bug 906979 - Make it possible again to force spell checking on text controls with spellcheck=false; r=roc 2013-08-22 17:49:11 -04:00
Jim Mathies
7ae9ef8280 Bug 906910 - Flush active tile assets on close of the browser. r=sfoster 2013-08-22 16:42:54 -05:00
Jim Mathies
caa0ba505e Bug 906735 - Fixup dpi issues when running browser_context_menu_tests.js locally. r=rsilveira 2013-08-22 16:42:53 -05:00