Граф коммитов

12722 Коммитов

Автор SHA1 Сообщение Дата
Ryan VanderMeulen 2afc7e809e Merge m-c to inbound. 2012-10-18 21:44:09 -04:00
Ryan VanderMeulen 169981e1e1 Merge m-c to inbound. 2012-10-18 21:28:57 -04:00
Benjamin Peterson 18527f9e0b Bug 803358 - Remove JSOPTION_RELIMIT. r=luke 2012-10-18 21:06:42 -04:00
Doug Turner 4fd0f3eb19 Bug 793955, 802867 - DeviceStorage files returned by DeviceStorage.get() don't always have lastModifiedDate. r=bent. a=blocking-basecamp 2012-10-18 11:29:32 -07:00
Gene Lian a889b550fd Bug 796293 - [camera] Picking camera after long press causes app crash and phone reboot. r=fabrice 2012-10-18 18:56:28 +08:00
Bobby Holley dbc1d55ec8 Bug 801305 - Use the bonafide subject for the loadinfo owner. r=bz 2012-10-19 01:45:09 +02:00
Bobby Holley 3de9006dfd Bug 802557 - Do more direct comparisons with the outer window. r=bz 2012-10-19 01:37:14 +02:00
Gene Lian 9971ae6edf Bug 799161 - Improve performance of activities registration at startup. r=fabrice 2012-10-18 15:32:15 +08:00
Fabrice Desré f2f2dacaab Bug 802740 - Wrap manifests lazily in DOMApplication objects [r=philikon] 2012-10-18 15:30:58 -07:00
Fabrice Desré f01e51ab08 Bug 802823 - Early cleanup of message listeners in ActivityProxy.js [r=gwagner] 2012-10-18 15:30:57 -07:00
Anant Narayanan 382c3b4fb6 Backed out changeset 3dfb18a29fe2 2012-10-18 11:53:59 -07:00
Anant Narayanan 611a7f7479 Bug 780790: Check for NULL callbacks to getUserMedia; r=jesup 2012-10-18 11:52:39 -07:00
Randell Jesup bef0a4c1e2 Bug 803093: Lock access to MediaEngineWebRTC singleton r=anant 2012-10-18 14:03:00 -04:00
Etienne Segonzac 7a37c5eb11 Bug 802675 - Fixing mozApp.checkForUpdate for packaged apps. r=fabrice 2012-10-18 11:32:03 +01:00
Isaac Aggrey c984edf823 Bug 794510: Part 2: Use more stdint types instead of protypes.h types; r=ehsan 2012-10-11 18:38:04 -05:00
Vicamo Yang 6c73e17aa4 Bug 797972 - Part 2/2: test cases, r=marshall_law 2012-10-19 00:55:41 +08:00
Yoshi Huang c81de95bb3 Bug 797972 - False roaming situation. r=vicamo 2012-10-04 19:30:06 -03:00
Donovan Preston 234de83db4 Bug 784893 - Rename the event's .socket attribute to .target; remove "on" prefix from event names. r=jonas 2012-10-17 22:29:58 -04:00
Boris Zbarsky 6fc1e2797b Bug 802636. Add a test that makes sure that codegen and example generation agree with each other. r=jst 2012-10-17 21:17:16 -04:00
Kyle Machulis 0d5aa7e492 Bug 800249 - Patch 2: Add ability to retreive connected socket address as a string; r=cjones 2012-10-17 17:11:05 -07:00
Gavin Sharp e5718a38c1 Bug 802436: fix test from bug 800817, r=smaug
--HG--
extra : rebase_source : be57519e1085fab2bd0c9ff6de0514715c817b72
2012-10-17 15:24:13 -07:00
Randell Jesup bb05ef58b2 Bug 802661: Clean up getUserMedia MediaStream handling r=roc,anant 2012-10-17 17:40:14 -04:00
Masayuki Nakano affac42d19 Bug 705057 part.4 Emulate the behavior of nsIWidget::ResetInputState() and nsIWidget::CancelIMEComposition() if the composition is synthesized r=smaug+roc, sr=roc 2012-09-26 14:47:51 +09:00
Masayuki Nakano 8acd6ae7f5 Bug 705057 part.1 Ensure a set of composition events is fired on same content r=smaug 2012-09-26 14:47:45 +09:00
Bill McCloskey fadcc33157 Bug 714050 - Add support for optional JS helper threads (r=luke) 2012-10-16 11:57:09 -07:00
Boris Zbarsky 05fd81befd Bug 800983. Expose a getter for default computed style. r=dbaron
An alternative implementation strategy is to add "default-only"
versions of ResolveStyleFor and ResolvePseudoElementStyle and then
modify FileRules to support those, or use a cut-down custom version of
FileRules for them.  That would be faster, but more complicated on the
style set side.  We can always make that switch if we need to, I guess.
2012-10-17 17:01:56 -04:00
Boris Zbarsky 255b11d2cd Bug 795520. Don't fail to return a computed CSS declaration just because the style change that will give us a presshell has not been processed yet. r=dbaron
Another, more risky, option would be to always return a declaration
from getComputedStyle, even if we have no presshell, then just throw
(after flushing, as needed) if people try to get style info for it
just like we already do for declarations whose document loses a
presshell.  This might cause compat issues on sites that can deal with
null but not exceptions, though.  :(
2012-10-17 17:01:56 -04:00
Boris Zbarsky dd82a0d964 Bug 796983 part 2. Add a way to generate an example class declaration for a given WebIDL interface. r=jst
We mark constructors as static in the parser because they are.  This
allows us to just use the isStatic() for the IDLMember to mark our
declarations static.

To generate an example interface implementation, just "make
interfacename-example" in $objdir/dom/bindings.  This will place files
called interfacename-example.h and interfacename-example.cpp in that
directory.  For example, "make XMLHttpRequest-example" will get you
$objdir/dom/bindings/XMLHttpRequest-example.h and
$objdir/dom/bindings/XMLHttpRequest-example.cpp.

Attribute getters currently default to const methods, while setters
and operations default to non-const methods.

--HG--
rename : dom/bindings/BindingGen.py => dom/bindings/ExampleGen.py
2012-10-17 17:01:55 -04:00
Boris Zbarsky 0d788a841d Bug 796983 part 1. Switch nullable primitives to using a const Nullable. r=jst 2012-10-17 17:01:55 -04:00
Fabrice Desré 5591742ced Bug 802108 - [MozActivity] fails for OOP applications [r=gwagner] 2012-10-17 13:44:39 -07:00
Gene Lian 429e33b79b Bug 801573 - [Web Activities] Need to notify SystemMessageInternal when the app's registration restarts to avoid sending system messages to deprecated pages. r=fabrice 2012-10-17 12:30:43 +08:00
Henrik Skupin fa81f0cb29 Bug 791278 - Crash test for WebRTC crash [@sipcc::PeerConnectionImpl::SetLocalDescription]. r=jesup 2012-10-17 15:33:57 -04:00
Ryan VanderMeulen 84a4da8d4f Merge m-c to inbound. 2012-10-17 15:33:10 -04:00
Benoit Jacob 775131a94a Bug 742781 - Implement WEBGL_debug_renderer_info extension - r=bz,jgilbert 2012-10-17 15:11:51 -04:00
Ryan VanderMeulen 292a5ce0ff Merge the last PGO-green inbound changeset to m-c. 2012-10-17 14:07:59 -04:00
Jonathan Griffin 93bc97a3af Bug 790463 - Disable test_outgoing_remote_hangup_held.js due to crashes, a=test-only, DONTBUILD(NPOTB) 2012-10-17 11:02:51 -07:00
Bobby Holley e799cc3495 Bug 801241 - Properly handle |false| return false from JS_DescribeScriptedCaller. r=bz 2012-10-17 19:44:30 +02:00
Jonathan Griffin 3de67077de Bug 790463 - Disable test_incoming_already_connected.js due to crash, a=test-only, DONTBUILD(NPOTB) 2012-10-17 10:22:16 -07:00
Ehsan Akhgari 16f73f960a Merge mozilla-central into mozilla-inbound 2012-10-17 13:03:16 -04:00
Aryeh Gregor 20cd797edd Bug 802069 follow-up - Fix alignment; r=nobody 2012-10-17 14:17:50 +02:00
Guillermo López 3a10e56c21 Bug 794011 - Add 'sessionEnded' to nsIDOMUSSDReceivedEvent. r=mounir 2012-10-17 12:17:19 +01:00
Fernando Jiménez 500743403a Bug 793189 - MMI Codes: get IMEI. Part 2 - Tests;r=marshall_law 2012-10-17 13:07:24 +02:00
Fernando Jiménez 4dd317023f Bug 793189 - MMI Codes: get IMEI. Part 1 - RIL; r=marshall_law 2012-10-17 13:07:24 +02:00
Aryeh Gregor 9582ec9bf0 Bug 802069 - Make "macintosh" the canonical name of its encoding, not "x-mac-roman"; r=smontagu
--HG--
rename : intl/uconv/tests/unit/test_decode_x_mac_roman.js => intl/uconv/tests/unit/test_decode_macintosh.js
rename : intl/uconv/tests/unit/test_encode_x_mac_roman.js => intl/uconv/tests/unit/test_encode_macintosh.js
2012-10-17 12:15:23 +02:00
Olli Pettay 4239411b65 Bug 801719 - Unmark certainly alive event listener and message managers, r=mccr8
--HG--
extra : rebase_source : 0637559f37143a21583afe3c06d1464de8fc665b
2012-10-17 04:22:02 +03:00
Olli Pettay 6b74bf4b06 Bug 802243 - WrapperCache DOMStringMap, r=bz
--HG--
extra : rebase_source : e908d30b301fc478c843b9c32c1b1846606fd6d2
2012-10-17 04:09:42 +03:00
Ryan VanderMeulen 1afbb753df Merge the last PGO-green inbound changeset to m-c. 2012-10-16 21:52:06 -04:00
Jonathan Griffin e1dd1af379 Bug 802427 - Disable Marionette expectedFailures for Python 2.6-compat reasons, a=test-only, DONTBUILD(NPOTB) 2012-10-16 16:41:42 -07:00
Trevor Saunders 85dfb659cf Bug 742191 - Part d: Throw TypeErrors for Paris binding exceptions; r=bz 2012-10-16 14:06:10 -04:00
Randell Jesup abfb94ebc4 Bug 801843: Change how video frames are inserted into getUserMedia streams to remove blocking r=roc,anant 2012-10-17 05:46:40 -04:00