Commit Graph

103929 Commits

Author SHA1 Message Date
Anthony Jones
a298612078 Bug 773460 - Change the default canvas over to Azure; r=nrc 2012-09-05 12:05:40 +12:00
Luke Wagner
489fcb6974 Bug 786801 - js_InferFlags should not stop at compartment boundaries (r=bhackett)
--HG--
extra : rebase_source : a8c83b7965d4b7fd1fa2bf12c1d5e24a20244215
2012-09-04 14:31:04 -07:00
Daniel Holbert
ac23760ca2 Bug 763689 patch 3: Support min-height:auto in computed style, and add special cases as necessary wherever it's read. r=dbaron 2012-09-04 16:26:11 -07:00
Daniel Holbert
cb09d97d7e Bug 763689 patch 2: Support min-width:auto in computed style, and add special cases as necessary wherever it's read. r=dbaron 2012-09-04 16:26:10 -07:00
Ryan VanderMeulen
e735cf0a40 Backout bug 738612, with feeling this time. 2012-09-04 19:21:23 -04:00
Steve Fink
2c5fd7829b Backed out changeset ceb6f653de08 (bug 738612) 2012-09-04 16:01:25 -07:00
Steve Fink
03af44932b Backed out changeset 81bbb0b8aff2 (bug 738612) 2012-09-04 16:01:23 -07:00
Steve Fink
952f239bd3 Bug 738612 - Add mozconfig "override" files to be included after everything else, for overriding previously set options. r=ted
--HG--
rename : build/macosx/common => build/macosx/mozconfig.common
2012-08-28 10:55:10 -07:00
Steve Fink
0c55c2082e Bug 738612 - Include common mozconfigs so try pushes can modify them easily. r=ted 2012-08-21 11:37:12 -07:00
Chris Peterson
d09ad2292a Bug 777591 - Part 1: Compile Java packages into separate jar files. r=blassey 2012-08-27 16:52:58 -07:00
Kartikaya Gupta
69712eb652 Bug 787060 - Update android widget RedrawAll to invalidate the entire view to work with DLBI. r=mattwoodrow 2012-09-04 18:06:22 -04:00
Benoit Girard
34d1b7b2ff Bug 787416 - Invalidate tiled layers when the format changes. r=joe 2012-09-04 18:05:31 -04:00
Robert Longson
11234826b0 Back out 92f2cf2f42b2 (bug 754592) for causing regression 2012-09-04 14:53:04 -07:00
Michael Wu
d165dedcc9 Bug 694484 - OpenSL backend for libcubeb, r=kinetik 2012-09-04 17:45:08 -03:00
Brendan Dahl
2cafcdd70a Bug 745025 - Part 2 - Adds layout/printing support for mozPrintCallback. r=roc 2012-08-30 17:24:35 -07:00
Brendan Dahl
3f688bb97f Bug 745025 - Part 1 - Adds mozPrintCallback for canvas. r=smaug 2012-08-31 10:45:45 -07:00
Landry Breuil
1bc80d0294 Bug 786995: Ensure the whole toolchain supports -mssse3, not only the compiler. r=ted 2012-09-04 22:19:50 +02:00
Jan Beich
e26c6b2144 Bug 785638 - Simplify yasm version check. r=ted 2012-09-04 22:18:51 +02:00
Mark Banner
e30b16a22a Bug 715089 run-mozilla.sh doesn't need to be shipped for Mac. r=ted 2012-09-04 21:26:54 +01:00
Kyle Machulis
93cbb2ff95 Bug 783426 - Async firing for FireSuccess/Error on DOMRequest; r=jonas r=khuey 2012-09-04 13:19:22 -07:00
Timothy Nikkel
583a8c4363 Bug 787818. Make sure the weak frame is alive after dispatching an event. r=mats 2012-09-04 14:57:28 -05:00
Kyle Machulis
a516c13139 Bug 764618: Remove IsOnPrefWhitelist and URIIsChromeOrInPref; r=gwagner 2012-09-04 11:53:47 -07:00
Eric Faust
497dfe5e4e Bug 781387 - Codegen infallibility data for Paris bindings methods. (r=peterv) 2012-09-04 14:46:38 -04:00
James Willcox
464b9cc6a5 Bug 786380 - Implement new Java-based updater for Android r=cpeterson,mfinkle
--HG--
extra : rebase_source : c7e5cd8228bf226f7e15e5653f8fe6f16e64273e
2012-08-31 09:31:29 -04:00
Brian Nicholson
1d40b77b9b Bug 787597 - Don't do a reader parse for pages with > 3000 elements. r=lucasr f=mfinkle 2012-09-04 10:51:22 -07:00
Brian Nicholson
8561527962 Bug 787570 - Fix relative URLs in reader mode. r=lucasr 2012-09-04 10:50:03 -07:00
Gregory Szorc
1af03519b1 Bug 758823 - Don't create egg-info directories when populating virtualenv; r=ted
This patch basically bypasses setup.py for pure Python packages. Instead
of producing .egg-info directories in the source tree, it merely
installs .pth files pointing back to the source directory. As a result,
this is less junk in the source tree.

The .hgignore and .gitignore entries for egg-info directories have been
removed because there should no longer be egg-info directories any more.
People should clean up these orphaned directories manually. This can be
accomplished by running:

  $ hg status -u | grep .egg-info | xargs rm -rf
  $ git ls-files -o '*.egg-info*' | xargs rm -rf
2012-09-04 10:45:45 -07:00
Gregory Szorc
192a616ee5 Bug 786520 - Clean up branding Makefile.in's for browser; r=ted
Previously all Makefile.in were identical. Common bits are now
refactored into a shared .mk file. They also use the generic
copy/install rule instead of a one-off make rule.
2012-09-04 10:38:42 -07:00
Kyle Machulis
dbd693fab8 Bug 787581 - Fix nullptr access crash in BluetoothManager Destructor; r=echou 2012-09-04 10:29:06 -07:00
Patrick McManus
10eb0935e8 bug 662996 fix comment from da6a55f4fdae r=comment-only 2012-09-04 13:14:22 -04:00
Brian O'Keefe
a33b199401 Bug 649567 - Propagate atributes on Arguments object properties. Patch also partially by Tom Schuster <evilpies@gmail.com>. r=jwalden
--HG--
extra : rebase_source : 237525c25bb4e3cdc3a2a4ee1553a892b76de3b4
2012-08-31 15:37:28 -07:00
Jeff Walden
6a5abe7484 Bug 786880 - Move nativeContains into ObjectImpl. r=bhackett
--HG--
extra : rebase_source : bcf9310c68cf67bd093a13108c791cf817ed9e40
2012-06-06 17:11:47 -07:00
Terrence Cole
09d4300426 Bug 501536 - Make jsd compile as C++; r=luke
This should be the last real C consumer of JS-API in mozilla-central.

--HG--
rename : js/jsd/jsd_atom.c => js/jsd/jsd_atom.cpp
rename : js/jsd/jsd_high.c => js/jsd/jsd_high.cpp
rename : js/jsd/jsd_hook.c => js/jsd/jsd_hook.cpp
rename : js/jsd/jsd_java.c => js/jsd/jsd_java.cpp
rename : js/jsd/jsd_lock.c => js/jsd/jsd_lock.cpp
rename : js/jsd/jsd_obj.c => js/jsd/jsd_obj.cpp
rename : js/jsd/jsd_scpt.c => js/jsd/jsd_scpt.cpp
rename : js/jsd/jsd_stak.c => js/jsd/jsd_stak.cpp
rename : js/jsd/jsd_step.c => js/jsd/jsd_step.cpp
rename : js/jsd/jsd_text.c => js/jsd/jsd_text.cpp
rename : js/jsd/jsd_val.c => js/jsd/jsd_val.cpp
rename : js/jsd/jsdebug.c => js/jsd/jsdebug.cpp
rename : js/jsd/jsdstubs.c => js/jsd/jsdstubs.cpp
2012-09-04 09:02:03 -07:00
Gavin Sharp
bf9272affd Bug 662996. Don't send cookies with OCSP requests. r=bsmith, sr=kaie 2011-07-12 12:06:34 -04:00
Jan de Mooij
70718ed34a Bug 788117 - Fix small typo in TypeDynamicResult. r=bhackett 2012-09-04 18:20:58 +02:00
Gene Lian
9490120b71 Bug 783021 - System time: listen to timezone settings changes and update system timezone (part 2). r=khuey, sr=cjones 2012-09-04 15:56:30 +08:00
Gene Lian
33729b0725 Bug 783021 - System time: listen to timezone settings changes and update system timezone (part 1). r=cjones 2012-08-23 17:00:00 +08:00
Kyle Huey
085c300900 Bug 786854: Don't parse background=''. r=bz 2012-09-04 08:53:11 -07:00
Philipp von Weitershausen
dcaa5ccfc0 Bug 784684 - Sending event for volume state changed. r=vingtetun 2012-09-04 08:51:46 -07:00
Alexandre Lissy
6d2eecf036 Bug 782289 - Headphones status notification. Part 2: Generate mozChromeEvent. r=vingtetun
Catching the 'headphones-status' event that is generated by AudioManager
and generating a mozChromeEvent matching. It will allow us to grab this
event in Gaia's status bar.
2012-08-13 16:59:30 +02:00
Alexandre Lissy
a847a856a0 Bug 782289 - Headphones status notification. Part 1: Send observer notification. r=philikon
We send this notification each time status change. For now, only on/off, maybe
it might be a good thing to add microphone status too. We will observe
this notification in b2g's shell.js to generate a mozChromeEvent.
2012-08-13 16:57:51 +02:00
Siddharth Agarwal
6f2be8b27c Merge mozilla-central to mozilla-inbound. 2012-09-04 21:18:34 +05:30
Siddharth Agarwal
d4e8850dbe Merge mozilla-central to build-system. 2012-09-04 21:16:02 +05:30
Phil Ringnalda
873f14a808 No bug because we seem not to care, mark linear-gradient-1b.html as failing on 10.8+Azure too 2012-09-04 08:31:09 -07:00
Andrew Quartey
98eb78f3c2 Bug 786687 - Add null check for passed parameter to NS_strlen r=dougt 2012-09-04 11:12:33 -04:00
Phil Ringnalda
3dfe068099 Bug 705047 followup, the || and or keys are right next to each other 2012-09-03 23:42:34 -07:00
Eric Wong
bd6c1ac9da Bug 767755: Re-implement IsPrimaryForNode() using an Accessible::mFlags bit. r=surkov 2012-09-03 23:06:10 -07:00
Mike Hommey
daa13a837f Bug 749518 - Don't use dl_iterate_phdr on gonk. r=BenWa 2012-09-04 10:59:01 +02:00
Benoit Girard
efc79320b7 Bug 749518 - Forward declare dl_iterate_phdr with extern C. r=glandium 2012-09-04 10:24:16 -04:00
Kartikaya Gupta
44d76037fb Bug 787322 - Don't send viewport updates back to gecko on page-size updates, since Gecko already knows about it. r=Cwiiis 2012-09-04 09:52:02 -04:00