Commit Graph

18126 Commits

Author SHA1 Message Date
Andrea Marchesini
9b0dc7c9eb Bug 883784 - [Workers] Support URL.createObjectURL from a worker created by a jsm. r=bent 2013-06-20 16:49:36 -04:00
Phil Ringnalda
24e1359cd5 Merge m-c to m-i 2013-06-27 14:28:21 -07:00
Yura Zenevich
af64fb7c4b Bug 830748 - [PATCH 1/2] [AccessFu] Improved reading of table semantics. r=eeejay 2013-06-27 14:15:36 -07:00
Guillaume Abadie ext:(%20and%20James%20King%20%3Cjames%40agentultra.com%3E)
a7e54e5fa6 bug 738869 - implement OES_vertex_array_object webgl extension - r=bjacob 2013-06-27 17:07:21 -04:00
John Schoenick
0031f6ddfb Bug 738396 - Only pass canonicalized codebase to Java. r=bsmedberg sr=jst 2013-06-27 13:59:37 -07:00
James Hugman
a1f26cfb98 Bug 860782 - Move Android permission install to first run, from install. r=wesj, r=fabrice 2013-06-20 12:51:18 -04:00
Mook
782e74021e dom: navigator: include nsGlobalWindow.h for gamepad support (r=smaug b=885819) 2013-06-24 13:07:03 -07:00
David Zbarsky
21ce0909ad Bug 885959 - Remove nsIDOMSVGAnimatedLength r=Ms2ger 2013-06-24 12:31:52 -07:00
Ryan VanderMeulen
d5c5ff5f07 Merge m-c and inbound. 2013-06-24 14:02:59 -04:00
Gabor Krizsanits
76bbeec56b Bug 864335 - Remove GetScriptGlobalObject. r=mrbkap 2013-06-21 16:25:20 +02:00
Jon Coppeard
ef8bb39711 Bug 885310 - 1 Rename JSHandleFoo in the browser r=bz 2013-06-21 14:12:46 +01:00
Jon Coppeard
987135a47b Bug 884384 - Use JS::MutableHandle<JS::Value> instead of jsval* for out parameters r=smaug 2013-06-21 14:12:46 +01:00
Guilherme Gonçalves
59757598fc Bug 884407 - Use an enum in SpeechRecognitionError. r=smaug 2013-06-25 20:08:58 -04:00
Ryan VanderMeulen
84b1954c49 Merge m-c and inbound. 2013-06-25 17:03:44 -04:00
Phil Ringnalda
84742fd7a7 Backed out 5fa1f7715c19:7a300d1d1b23 (bug 855130) for Windows build failures
CLOSED TREE
2013-07-01 21:23:37 -07:00
Matthew Gregan
e3fa0f9357 Bug 855130 - Implement URL::createObjectURL overload for MediaSources. r=khuey
---
 content/base/public/nsHostObjectProtocolHandler.h | 26 +++++++++
 content/base/src/nsHostObjectProtocolHandler.cpp  | 65 +++++++++++++++++------
 content/base/src/nsHostObjectURI.h                |  5 +-
 content/media/mediasource/MediaSource.cpp         |  1 +
 content/media/mediasource/MediaSource.h           |  7 +++
 dom/base/URL.cpp                                  | 12 +++++
 dom/base/URL.h                                    |  7 +++
 dom/webidl/URL.webidl                             |  6 +++
 layout/build/nsLayoutModule.cpp                   |  4 ++
 9 files changed, 116 insertions(+), 17 deletions(-)
2013-07-02 15:46:49 +12:00
Matthew Gregan
cc58eb952e Bug 855130 - Implement a minimal working subset of the Media Source Extensions API. r=roc
---
 content/media/mediasource/AsyncEventRunner.h       |  35 ++
 content/media/mediasource/Makefile.in              |  18 +
 content/media/mediasource/MediaSource.cpp          | 395 +++++++++++++++++++++
 content/media/mediasource/MediaSource.h            | 127 +++++++
 .../media/mediasource/MediaSourceInputAdapter.cpp  | 176 +++++++++
 .../media/mediasource/MediaSourceInputAdapter.h    |  43 +++
 content/media/mediasource/SourceBuffer.cpp         | 249 +++++++++++++
 content/media/mediasource/SourceBuffer.h           | 115 ++++++
 content/media/mediasource/SourceBufferList.cpp     | 143 ++++++++
 content/media/mediasource/SourceBufferList.h       |  79 +++++
 content/media/mediasource/moz.build                |  24 ++
 content/media/moz.build                            |   2 +
 dom/bindings/Bindings.conf                         |  13 +
 dom/dom-config.mk                                  |   1 +
 dom/webidl/MediaSource.webidl                      |  38 ++
 dom/webidl/SourceBuffer.webidl                     |  44 +++
 dom/webidl/SourceBufferList.webidl                 |  17 +
 dom/webidl/WebIDL.mk                               |   3 +
 layout/build/Makefile.in                           |   4 +
 modules/libpref/src/init/all.js                    |   3 +
 20 files changed, 1529 insertions(+)
 create mode 100644 content/media/mediasource/AsyncEventRunner.h
 create mode 100644 content/media/mediasource/Makefile.in
 create mode 100644 content/media/mediasource/MediaSource.cpp
 create mode 100644 content/media/mediasource/MediaSource.h
 create mode 100644 content/media/mediasource/MediaSourceInputAdapter.cpp
 create mode 100644 content/media/mediasource/MediaSourceInputAdapter.h
 create mode 100644 content/media/mediasource/SourceBuffer.cpp
 create mode 100644 content/media/mediasource/SourceBuffer.h
 create mode 100644 content/media/mediasource/SourceBufferList.cpp
 create mode 100644 content/media/mediasource/SourceBufferList.h
 create mode 100644 content/media/mediasource/moz.build
 create mode 100644 dom/webidl/MediaSource.webidl
 create mode 100644 dom/webidl/SourceBuffer.webidl
 create mode 100644 dom/webidl/SourceBufferList.webidl
2013-07-02 15:46:48 +12:00
Matthew Gregan
d9ad81f9e4 Bug 855130 - Implement HTMLVideoElement's VideoPlaybackQuality (from Media Source Extensions spec). r=roc
---
 content/html/content/public/HTMLVideoElement.h |  4 ++
 content/html/content/src/HTMLVideoElement.cpp  | 27 ++++++++++
 content/media/MediaDecoder.h                   | 17 +++++++
 content/media/MediaDecoderStateMachine.cpp     |  6 ++-
 content/media/VideoPlaybackQuality.cpp         | 53 ++++++++++++++++++++
 content/media/VideoPlaybackQuality.h           | 68 ++++++++++++++++++++++++++
 content/media/moz.build                        |  2 +
 dom/base/moz.build                             |  2 +
 dom/bindings/Bindings.conf                     |  4 ++
 dom/webidl/HTMLVideoElement.webidl             |  6 +++
 dom/webidl/VideoPlaybackQuality.webidl         | 20 ++++++++
 dom/webidl/WebIDL.mk                           |  1 +
 12 files changed, 209 insertions(+), 1 deletion(-)
 create mode 100644 content/media/VideoPlaybackQuality.cpp
 create mode 100644 content/media/VideoPlaybackQuality.h
 create mode 100644 dom/webidl/VideoPlaybackQuality.webidl
2013-07-02 15:46:48 +12:00
James Hugman
228b79b0ec Bug 860782 - Move Android permission install to first run, from install. r=wesj, r=fabrice
* * *
Bug 860782 - Use app when requesting permissions. r=mfinkle
* * *
Bug 860782 - Disable permissions tests on platforms where they shouldn't work. r=mfinkle
2013-06-20 12:51:18 -04:00
Masatoshi Kimura
a283d41151 Bug 874669 - Remove legacy event type constants. r=smaug 2013-06-26 02:12:48 +09:00
Andrea Marchesini
0594963b9f Bug 883784 - [Workers] Supporting URL.createObjectURL from a worker created by a jsm, r=bent 2013-06-22 14:48:00 -07:00
Masatoshi Kimura
6a3e0e9b8d Bug 885611 - Remove the hasXPConnectImpls annotation from Event. r=smaug 2013-06-23 08:47:19 +09:00
Dimi Lee
57a43bf800 Bug 868941 - Connecting to WLAN using WPA-EAP with special options (mschapv2/PEAP) is not possible. r=vchang 2013-05-30 11:17:07 +08:00
Dimi Lee
1b7323408a Bug 786700 - Wifi: Add the ability to set a static IP instead of using DHCP. r=vchang, r=mrbkap 2013-06-24 11:02:30 +08:00
Ed Morley
2faba00f1b Merge mozilla-central and birch 2013-06-24 13:41:17 +01:00
Gene Lian
68ff282d24 Bug 876614 - Queue up the incomming message if we're currently dispatching a message to avoid nested event loop (e.g. via alert()). r=jlebar a=leo+ 2013-06-21 16:17:22 +08:00
Gene Lian
4cc13dd688 Bug 885674 - Alarm API - Delete Alarm API data on app uninstallation (and clear data?) (follow-up). r=nsm 2013-06-21 17:30:40 +08:00
Gene Lian
08d3ecb8a3 Bug 885652 - B2G SMS: DOMRequest in sending SMS API does not trigger onsuccess or onerror function when the SIM card is not installed or radio is disabled. r=vicamo a=leo+ 2013-06-24 20:08:30 +08:00
Ted Mielczarek
fbf6191cd8 bug 857092 - put non-standard Gamepad events behind another pref. r=smaug 2013-06-19 15:05:47 -04:00
Gabriele Svelto
4351779a51 Bug 848662 - Add marionette tests for FDN contacts manipulation; r=yoshi
--HG--
extra : rebase_source : ba108c39ac83328b69e4b6203dab3d3da52f0879
2013-06-21 11:11:23 +02:00
Alexandre Lissy
956a70d8c4 Bug 883017 - Send MMS with UTF-8 charset; r=gene.lian
Some MMSC seems to be doing bad things if we don't encode/specify the
correct encoding: SFR and Bouygues Telecom delivers UTF-8 destroyed,
while Free Mobile and Orange did a good job. Setting the charset to
UTF-8 makes those four carriers (and probably a lot more) happy.
2013-06-15 20:23:51 +02:00
Ethan Hugg
2ee83b272b Bug 875640 - re-enable crashtest for Android r=philor 2013-06-20 16:17:05 -07:00
Nikhil Marathe
a4d0a3c54e Bug 885156 - Set _started in PushService.init(). r=dougt 2013-06-20 13:38:01 -07:00
Kartikaya Gupta
603cf626d1 Bug 883646 - Propagate the ScaleFactor classes far and wide. r=kentuckyfriedtakahe 2013-06-20 16:10:58 -04:00
Kartikaya Gupta
59806913c0 Bug 883646 - Fix the zoom clamping in APZC and the resolution calculation. r=kentuckyfriedtakahe 2013-06-20 16:10:57 -04:00
Joey Armstrong
177893ac53 bug 880246: move EXTRA_PP_COMPONENTS to mozbuild (cleanup). r=mshal 2013-06-20 15:59:59 -04:00
Benjamin Smedberg
06391ed9e4 Bug 882339 part B - nsPluginTag::IsBlocklisted should use the cached blocklist state, since it gets called in some tight loops via plugintag.IsActive r=johns Once more with feeling!
--HG--
extra : rebase_source : 50342011c886109a25a7a38d18b23cde7c4e4c85
2013-06-20 15:20:14 -04:00
Blake Kaplan
7a5fa22309 Bug 653881 - Rework XBL insertion points and clean up related code to more closely follow the Web Components model. Instead of maintaining a hashtable of insertion points in bindings (and removing insertions points from the tree) leave the insertion points in the tree as explicit placeholders and teach all other relevant code how to walk the explicit children of elements via two iterators (ExplicitChildIterator and FlattenedChildIterator). Note that this patch does not maintain 100% compatibility with the previous code: there are bug fixes and behavior changes included. For example, by having explicit insertion points in the bindings, it is now easier to handle dynamic changes to the bound element correctly (as well as, eventually, handling dynamic changes to the binding correctly). Patch originally by sicking. r=bzbarsky
--HG--
extra : rebase_source : 6926ae8ea57b20f4067b16bd3d7bd85bda854756
2013-05-01 15:50:08 -07:00
Justin Lebar
3e059c7221 Bug 820686 - Remove code after MOZ_CRASH or MOZ_ASSUME_NOT_REACHED. r=(see below)
r=tbsaunde for accessible
r=jmuizelaar for gfx
r=waldo for js
r=roc for layout
r=glandium for mozglue
r=jduell for netwerk
r=khuey for everything else
2013-06-28 18:38:32 -07:00
Justin Lebar
051c5b560a Bug 802686 - s/MOZ_NOT_REACHED/MOZ_CRASH/ in Gecko. r=(see below)
r=tbsaunde for accessible
r=jmuizelaar for gfx
r=roc for layout
r=glandium for mozglue
r=jduell for netwerk
r=khuey for everything else

This is a mechanical change made with sed.  Later patches in this queue
clean up the whitespace errors and so on.
2013-06-28 18:38:30 -07:00
Mike Shal
156426771a Bug 875013 - Eliminate VPATH usage (part 1 - EXPORTS); r=joey 2013-06-26 14:51:06 -04:00
Andrew McCreight
fc86fbdc7e Bug 882997 - Don't DROP or clear wrapper cache flag in GetAndClearExpandoObject. r=peterv 2013-06-28 12:32:27 -07:00
Thomas Zimmermann
e16614d9ba Bug 880168: Replace RemoveDeviceTask by non-blocking implementation, r=echou,gyeh
This patch replaces RemoveDeviceTask by a non-blocking implementation
that does not use the Bluetooth command thread. The request gets send
directly to the DBus, and its reply gets processed in the DBus thread
itself.

--HG--
rename : netwerk/protocol/http/HttpLog.h => netwerk/protocol/http/nsHttp.h
extra : rebase_source : a99a9d6561d94df77d8d9cd53e39371aa1f6386d
2013-04-16 16:46:10 +02:00
Ben Tian
e2f9cd0dde Bug 883619 - No busy tone on Bluetooth Car kit, r=gyeh 2013-06-24 12:10:07 +08:00
Michael Wu
f804d996c8 Bug 784226 - Support libhardware_legacy and libnetutils on JB, r=vchang 2013-06-23 23:40:21 -04:00
Ted Mielczarek
98dadecb4e bug 860413 - Allow setting standard gamepad mapping. r=smaug 2013-04-09 08:43:25 -04:00
Masatoshi Kimura
8f749ee3ff Bug 851982 - Regression test. r=smontagu 2013-06-21 00:54:40 +09:00
Olli Pettay
62b1a05430 Bug 884296 - Remove the rest of the classinfos for DOM events, r=peterv
--HG--
extra : rebase_source : 9b397e2e19e8e15d2753dc5bf7c18e2b3147f92b
2013-06-20 17:13:52 +03:00
Ed Morley
ac3d49a744 Backed out changeset 96036434bb78 (bug 875289) for mochitest-chrome failures on a CLOSED TREE
--HG--
rename : dom/promise/Promise.cpp => dom/future/Future.cpp
rename : dom/promise/Promise.h => dom/future/Future.h
rename : dom/promise/PromiseCallback.cpp => dom/future/FutureCallback.cpp
rename : dom/promise/PromiseCallback.h => dom/future/FutureCallback.h
rename : dom/promise/PromiseResolver.cpp => dom/future/FutureResolver.cpp
rename : dom/promise/PromiseResolver.h => dom/future/FutureResolver.h
rename : dom/promise/Makefile.in => dom/future/Makefile.in
rename : dom/promise/moz.build => dom/future/moz.build
rename : dom/promise/tests/Makefile.in => dom/future/tests/Makefile.in
rename : dom/promise/tests/moz.build => dom/future/tests/moz.build
rename : dom/promise/tests/test_promise.html => dom/future/tests/test_future.html
rename : dom/promise/tests/test_resolve.html => dom/future/tests/test_resolve.html
rename : dom/webidl/Promise.webidl => dom/webidl/Future.webidl
2013-06-20 11:20:49 +01:00
Ed Morley
4974f38562 Backed out changeset 80732a2b8422 (bug 875289) 2013-06-20 11:20:01 +01:00
Andrea Marchesini
8d49f07742 Bug 875289 - Remove .done() and allow undefined to be passed to .then() and .catch(), r=mounir 2013-06-20 10:49:47 +02:00
Andrea Marchesini
48c75b0ef5 Bug 875289 - Renaming Future to Promise, r=mounir
--HG--
rename : dom/future/Makefile.in => dom/promise/Makefile.in
rename : dom/future/Future.cpp => dom/promise/Promise.cpp
rename : dom/future/Future.h => dom/promise/Promise.h
rename : dom/future/FutureCallback.cpp => dom/promise/PromiseCallback.cpp
rename : dom/future/FutureCallback.h => dom/promise/PromiseCallback.h
rename : dom/future/FutureResolver.cpp => dom/promise/PromiseResolver.cpp
rename : dom/future/FutureResolver.h => dom/promise/PromiseResolver.h
rename : dom/future/moz.build => dom/promise/moz.build
rename : dom/future/tests/Makefile.in => dom/promise/tests/Makefile.in
rename : dom/future/tests/moz.build => dom/promise/tests/moz.build
rename : dom/future/tests/test_future.html => dom/promise/tests/test_promise.html
rename : dom/future/tests/test_resolve.html => dom/promise/tests/test_resolve.html
rename : dom/webidl/Future.webidl => dom/webidl/Promise.webidl
2013-06-20 10:49:40 +02:00
Ed Morley
867dc5785d Merge latest green birch changeset and mozilla-central 2013-06-20 09:01:19 +01:00
Gina Yeh
368e37faa8 Bug 873919 - Remove old system messages for Bluetooth pairing requests, r=echou 2013-06-20 12:14:09 +08:00
Patrick Wang
2f848ffdc6 Bug 883296: returning empty object instead of null when decoding zero length data in Octet.decodeMultiple. r=gene 2013-06-17 19:33:57 +08:00
Patrick Wang
6191808691 Backed out changeset 9a3ee53f3421. 2013-06-20 10:35:45 +08:00
Patrick Wang
d105edd89e [PATCH] Bug 883296: returning empty object instead of null when
From 1a04770db0f0e86440503e73bded294b696b876c Mon Sep 17 00:00:00 2001
 decoding zero length data in Octet.decodeMultiple.
---
 dom/mobilemessage/src/ril/WspPduHelper.jsm |   62 ++++++++++++++--------------
 1 file changed, 30 insertions(+), 32 deletions(-)
2013-06-17 19:33:57 +08:00
Gina Yeh
d4801377c8 Bug 882551 - Patch 5: Change return type of internal functions, r=qdot, r=mrbkap, r=echou 2013-06-20 09:20:16 +08:00
Gina Yeh
20f995abc1 Bug 882551 - Patch 4: Remove BluetoothA2dpManagerObserver, r=qdot, r=mrbkap, r=echou 2013-06-20 09:20:02 +08:00
Gina Yeh
6af57fc8e2 Bug 882551 - Patch 3: Remove BluetoothOppManagerObserver, r=qdot, r=mrbkap, r=echou 2013-06-20 09:19:46 +08:00
Gina Yeh
c79345626f Bug 882551 - Patch 2: Remove BluetoothHfpManagerObserver, r=qdot, r=mrbkap, r=echou 2013-06-20 09:19:31 +08:00
Gina Yeh
1499788e39 Bug 882551 - Patch 1: BluetoothProfileManagerBase inherits nsIObserver, r=qdot, r=mrbkap, r=echou 2013-06-20 09:19:15 +08:00
Ben Kelly
7326e35f0d Bug 884679 - Output warning using dump() instead of Console.jsm. r=gwagner 2013-06-19 21:09:31 -04:00
Brian O'Keefe
11bcc1cd9e Bug 875934 - Move LIBRARY_NAME to moz.build (batch #1); r=mshal
--HG--
extra : rebase_source : 385d3fd65475ffc18ee44ae088753649470e214b
2013-06-17 15:21:01 -04:00
Ehsan Akhgari
841ce34498 Backed out changeset c1596bee956c (bug 884279) because of build bustage
--HG--
rename : dom/promise/Promise.cpp => dom/future/Future.cpp
rename : dom/promise/Promise.h => dom/future/Future.h
rename : dom/promise/PromiseCallback.cpp => dom/future/FutureCallback.cpp
rename : dom/promise/PromiseCallback.h => dom/future/FutureCallback.h
rename : dom/promise/PromiseResolver.cpp => dom/future/FutureResolver.cpp
rename : dom/promise/PromiseResolver.h => dom/future/FutureResolver.h
rename : dom/promise/Makefile.in => dom/future/Makefile.in
rename : dom/promise/moz.build => dom/future/moz.build
rename : dom/promise/tests/Makefile.in => dom/future/tests/Makefile.in
rename : dom/promise/tests/moz.build => dom/future/tests/moz.build
rename : dom/promise/tests/test_promise.html => dom/future/tests/test_future.html
rename : dom/promise/tests/test_resolve.html => dom/future/tests/test_resolve.html
rename : dom/webidl/Promise.webidl => dom/webidl/Future.webidl
2013-06-19 21:57:57 -04:00
Ehsan Akhgari
bc92a4271f Backed out changeset 8df19e23b3ae (bug 875289) because it depends on bug 884279 which I'm backing out 2013-06-19 21:57:48 -04:00
Andrea Marchesini
a3ae02a4fe Bug 875289 - Remove .done() and allow undefined to be passed to .then() and .catch(). r=mounir, sr=bz 2013-06-19 20:57:38 -04:00
Andrea Marchesini
476be46aaf Bug 884279 - Rename Future to Promise. r=mounir
--HG--
rename : dom/future/Makefile.in => dom/promise/Makefile.in
rename : dom/future/Future.cpp => dom/promise/Promise.cpp
rename : dom/future/Future.h => dom/promise/Promise.h
rename : dom/future/FutureCallback.cpp => dom/promise/PromiseCallback.cpp
rename : dom/future/FutureCallback.h => dom/promise/PromiseCallback.h
rename : dom/future/FutureResolver.cpp => dom/promise/PromiseResolver.cpp
rename : dom/future/FutureResolver.h => dom/promise/PromiseResolver.h
rename : dom/future/moz.build => dom/promise/moz.build
rename : dom/future/tests/Makefile.in => dom/promise/tests/Makefile.in
rename : dom/future/tests/moz.build => dom/promise/tests/moz.build
rename : dom/future/tests/test_future.html => dom/promise/tests/test_promise.html
rename : dom/future/tests/test_resolve.html => dom/promise/tests/test_resolve.html
rename : dom/webidl/Future.webidl => dom/webidl/Promise.webidl
2013-06-19 20:57:38 -04:00
Wes Kocher
fd42bab8c8 Merge m-c with inbound 2013-06-19 16:46:01 -07:00
Wes Kocher
cbef21edec Merge inbound to central 2013-06-19 16:37:58 -07:00
Boris Zbarsky
30f5cba73c Bug 884401. Remove the hasXPConnectImpls annotations for HTMLElement, Element, and Node in WebIDL bindings, since all those are gone. r=peterv 2013-06-19 14:48:43 -04:00
Boris Zbarsky
111050ba80 Bug 883827. Make Optional<NonNull<T>> and Optional<OwningNonNull<T>> nicer to use by having their const Value() method return a T&. r=peterv 2013-06-19 14:48:43 -04:00
Benjamin Smedberg
cde208f9c9 Bug 882339 - Cache the blocklist state on plugin tags to avoid querying the blocklist service constantly, r=johns 2013-06-19 11:07:28 -04:00
Ed Morley
43712ddab0 Merge mozilla-central and inbound 2013-06-19 15:51:08 +01:00
Ed Morley
ebe02808bd Merge latest green birch changeset and mozilla-central 2013-06-19 15:29:37 +01:00
Vincent Chang
7b8932b4f3 Bug 868913 - Part 2: Fix the wifi initial start problem. r=mrbkap 2013-06-17 12:20:39 +08:00
Ehsan Akhgari
acfc21a9c4 Bug 865256 - Part 2: Rename WaveTable to PeriodicWave; r=roc
--HG--
rename : content/media/webaudio/WaveTable.cpp => content/media/webaudio/PeriodicWave.cpp
rename : content/media/webaudio/WaveTable.h => content/media/webaudio/PeriodicWave.h
rename : content/media/webaudio/test/test_waveTable.html => content/media/webaudio/test/test_periodicWave.html
rename : dom/webidl/WaveTable.webidl => dom/webidl/PeriodicWave.webidl
2013-06-19 18:24:26 -04:00
Andrea Marchesini
91c64da847 Bug 841442 - Move HTMLFormElement to WebIDL, r=bz 2013-06-19 10:24:37 -04:00
Andrea Marchesini
3e4e0d931a Bug 841442 - Rename nsHTMLFormElement to HTMLFormElement
--HG--
rename : content/html/content/src/nsHTMLFormElement.cpp => content/html/content/src/HTMLFormElement.cpp
rename : content/html/content/src/nsHTMLFormElement.h => content/html/content/src/HTMLFormElement.h
2013-06-19 10:24:37 -04:00
Terrence Cole
96ea8cfe09 Bug 884410 - Handlify the JS_ResolveStandardClass interface; r=jonco
--HG--
extra : rebase_source : 3ba45931aad97fb7cbca517ae9bccb974d42e57a
2013-06-13 17:10:00 -07:00
Terrence Cole
ecf0e80935 Bug 884410 - Handlify the JS_TransplantObject interfaces; r=jonco
--HG--
extra : rebase_source : f1c2adc7380e5806ce6b4fce5bb41f9400b9e1b1
2013-06-13 17:09:55 -07:00
Ryan VanderMeulen
41a2d6261a Merge m-c and inbound. 2013-06-18 19:10:23 -04:00
Ryan VanderMeulen
6519a0cc92 Merge inbound and m-c. IGNORE BAD COMMIT MESSAGES 2013-06-18 19:04:48 -04:00
Shane Tully
7aedf5013b Bug 807688 - Add "key" field to the mozContact interface. r=gwagner sr=sicking 2013-06-14 10:15:57 -07:00
Ryan VanderMeulen
d544cfcdd8 Backed out changeset 9915f8dae4e5 (bug 867895) for xpcshell bustage and landing on the wrong branch. 2013-06-18 12:31:56 -04:00
Chia-hung Tai
87838cd54b Bug 880561 - B2G MMS: Add 2 more error status (in flight mode and no sim card) when sending MMS. r=gene 2013-06-18 12:06:32 +08:00
Chris Peterson
14bc8b71cf Bug 883071 - Don't send opted-out SSIDs when querying Google Location Service. r=dougt 2013-06-13 20:20:15 -07:00
Ed Morley
31fc1926a0 Merge mozilla-central and inbound 2013-06-18 12:05:32 +01:00
Ed Morley
9566905a03 Merge latest green birch changeset and mozilla-central 2013-06-18 11:57:48 +01:00
Ryan VanderMeulen
b6a943bbd8 Merge m-c and birch. 2013-06-17 20:05:54 -04:00
Nikhil Marathe
67e00e0159 Bug 863660 - Add pref to enable/disable SimplePush WebSocket. r=dougt
This pref should be used in UX to enable/disable push notifications
when the user wants to conserve battery life or save data usage.

--HG--
extra : rebase_source : a75b089082a4d44170890cae228c62114633f790
2013-06-17 11:36:58 -07:00
Georg Fritzsche
e2cc49d14f Bug 883671 - Get rid of plugin.expose_full_path. r=bsmedberg 2013-06-17 12:35:29 +02:00
Jon Coppeard
a30b14261f Bug 877762 - GC: Post-barrier cycle collector participants - 7 Convert most JSObect to use Heap<T> (ex. XBL) r=bz 2013-06-18 11:00:38 +01:00
Jon Coppeard
b028ce34ad Bug 877762 - GC: Post-barrier cycle collector participants - 6 Convert jsid and JS::String to use Heap<T> r=smaug 2013-06-18 11:00:38 +01:00
Jon Coppeard
5b896f6665 Bug 877762 - GC: Post-barrier cycle collector participants - 5 Convert JS::Value to use Heap<T> r=smaug 2013-06-18 11:00:37 +01:00
Fabrice Desré
84c3593dca Bug 874339 - System Message API: redundant queues are created for the pending "activity" system messages r=gene 2013-06-16 21:16:21 -07:00
Ryan VanderMeulen
36f9729a1c Merge inbound and m-c. 2013-06-15 21:34:21 -04:00
Ryan VanderMeulen
978c564339 Merge m-c and birch. 2013-06-14 21:42:59 -04:00
Kyle Machulis
6a87e37411 Bug 882443: Check for connection before asserting in BluetoothA2dpManager::Disconnect; r=gyeh r=shuang 2013-06-14 18:29:20 -07:00
Albert Crespell
39f3f03008 Bug 879790 - Fix data usage lost during the very first start-up of Gecko. r=gene.lian 2013-06-13 16:37:36 +02:00
Olli Pettay
09024c5489 Bug 847611 - Paris bindings for autogenerated events, r=peterv 2013-06-18 21:48:45 +03:00
Albert Crespell
931d03523d Bug 877607 - Tests. r=gene.lian 2013-06-08 09:57:02 +02:00
Albert Crespell
69d8a2927a Bug 877607 - Convert sample dates to local timezone when return. r=gene.lian 2013-06-08 09:57:02 +02:00
Ed Morley
6b3c2d9601 Merge latest green birch changeset and mozilla-central 2013-06-14 09:55:54 +01:00
Boris Zbarsky
c23542725a Bug 883358 part 2. Use the new information in bindings error reporting. r=smaug 2013-06-17 16:31:13 -04:00
Boris Zbarsky
2d7f4e5a2e Bug 882653 part 5. Improve WebIDL binding error reporting for overload resolution failures, unions, non-finite floats. r=smaug 2013-06-17 13:07:04 -04:00
Boris Zbarsky
ad494b55cc Bug 882653 part 4. Improve the WebIDL binding error reporting for the not-sequence, not-callable, not-dictionary, not-date, and invalid-enum-value cases. r=smaug 2013-06-17 13:07:03 -04:00
Boris Zbarsky
5b3cb06a12 Bug 882653 part 3. Make the "does not implement interface" error reporting better in WebIDL bindings. r=smaug 2013-06-17 13:07:03 -04:00
Boris Zbarsky
9d92031480 Bug 882653 part 2. Make the "not an object" error reporting better in WebIDL bindings. r=smaug
This also adds infrastructure to generally indicate to the
js-to-native conversion exactly what is being converted.
2013-06-17 13:07:03 -04:00
Boris Zbarsky
f33f6d5496 Bug 882653 part 1. Improve error reporting for bogus this objects in WebIDL bindings. r=smaug 2013-06-17 13:07:03 -04:00
Boris Zbarsky
1398e3eee6 Bug 882547. Treat undefined values in WebIDL dictionaries as missing. r=smaug 2013-06-17 13:07:03 -04:00
Max Li
b68ed19c15 Bug 876475 - Make braille output less verbose. r=eeejay r=kats r=ted
--HG--
rename : accessible/src/jsat/UtteranceGenerator.jsm => accessible/src/jsat/OutputGenerator.jsm
rename : accessible/tests/mochitest/jsat/utterance.js => accessible/tests/mochitest/jsat/output.js
2013-06-17 10:36:41 -04:00
Ed Morley
69d9b410ec Merge mozilla-central and inbound 2013-06-17 09:36:26 +01:00
Kartikaya Gupta
2a3c35c773 Bug 880676 - Remove ToCSSIntRectRoundIn and convert APZC::CalculateResolution to return a ScaleFactor. r=kentuckyfriedtakahe 2013-06-14 16:11:44 -04:00
Kartikaya Gupta
fa6e557e9e Bug 880676 - Correct the composition bounds to be in screen coordinates rather than layer coordinates. r=kentuckyfriedtakahe 2013-06-14 16:11:29 -04:00
Joey Armstrong
0a0e08cb9c bug 880246: move EXTRA_PP_COMPONENTS to mozbuild (file batch #1) r=mshal 2013-06-14 14:07:19 -04:00
Ryan VanderMeulen
6529c6c587 Merge m-c to inbound. 2013-06-14 13:04:31 -04:00
Josh Matthews
f1ec351b63 Bug 867895 - Ensure the geolocation provider's high accuracy flag is reset when all requests that require it are satisfied. r=dougt 2013-06-05 17:57:26 -04:00
Ed Morley
5fa601e108 Merge mozilla-central and birch 2013-06-18 12:05:31 +01:00
Gene Lian
dfee1a5c53 Bug 880648 - [MMS] Accented characters are not correctly sent/received in a MMS (part 1, content blob should be encoded by utf-8). r=vicamo a=leo+ 2013-06-18 16:28:55 +08:00
Gene Lian
ed62156249 Backed out changeset 66523a98fe19 2013-06-18 16:25:52 +08:00
Gene Lian
44281ac350 Bug 880648 - [MMS] Accented characters are not correctly sent/received in a MMS (part 1, content blob should be encoded by utf-8). r=vicamo a=leo+ 2013-06-18 16:13:39 +08:00
Chuck Lee
0920d11333 Bug 853782 - 0003. Treat PDU data in correct type, Uint8Array. r=vicamo 2013-06-17 18:49:06 +08:00
Chuck Lee
8cd77f3da4 Bug 853782 - 0002. Notify receiving of WAP Push by System Message. r=vicamo 2013-06-17 16:37:59 +08:00
Chuck Lee
9c6c7f083c Bug 853782 - 0001. Set content type of wap push message. r=vicamo 2013-06-17 18:49:03 +08:00
Fernando Jiménez
5aa45bedd2 Bug 884760 - Typo in OfflineCacheInstaller.jsm. r=me 2013-06-19 13:13:45 +02:00
Jon Coppeard
b4a1d2128a Bug 884371 - Remove JSMutableHandleXXX from the browser r=bz 2013-06-19 11:32:27 +01:00
Josh Matthews
5cb0162f45 Bug 865257 - Implement MediaStreamAudioDestinationNode. r=ehsan,roc 2013-05-21 15:17:47 -04:00
Martijn Wargers
49fddee770 Bug 883094 - Fix some test files that don't unset their prefs correctly. r=jgriffin 2013-06-15 00:33:47 +02:00
Nils Maier
983b641f0f Bug 846019 - Part 2: Prefix memory reports with add-on ids. r=njn 2013-06-14 22:48:28 -04:00
Edgar Chen
08d893ad35 Bug 860585 - Part 5: Fix xpcshell tests for cardlock. r=allstars.chh 2013-05-21 15:15:45 +08:00
Chris Peterson
256cba59c5 Bug 827407 - Back out Flash fullscreen video bug 809055 to test whether FlashPaintSurface crashes are correlated. r=snorp 2013-06-11 10:09:57 -07:00
Ryan VanderMeulen
71c9853712 Backed out 3 changesets (bug 883358) for Android mochitest-3 failures on a CLOSED TREE.
Backed out changeset 84b35dd1879d (bug 883358)
Backed out changeset b5e6522257cb (bug 883358)
Backed out changeset 757a3f2e5de6 (bug 883358)
2013-06-17 19:51:12 -04:00
Boris Zbarsky
a4c9c172ca Fix test fallout from bug 883358 so we can stop having a CLOSED TREE. No review. 2013-06-17 18:24:04 -04:00
L. David Baron
4cb93c7005 Bug 757554: Reject uses of reserved 'not', 'only', 'and', and 'or' as a media type. r=heycam 2013-06-17 14:26:08 -07:00
Boris Zbarsky
4fea0995d3 Bug 883358 part 2. Use the new information in bindings error reporting. r=smaug 2013-06-17 16:31:13 -04:00
Boris Zbarsky
b1208ea2a6 Bug 874758. Make DOMStringMap use [OverrideBuiltins]. r=peterv 2013-06-17 16:31:03 -04:00
Julien Wajsberg
622a7331ec Bug 814090 - [classList] Implement the second force argument for toggle. r=bz 2013-06-14 23:22:17 +02:00
Mike Habicher
6182bc6688 Bug 882328 - remove off-Main Thread JS callback addrefs, r=jdm 2013-06-17 11:59:53 -04:00
Peter Van der Beken
08d68069d5 Bug 851465 - Remove slim wrappers - remove slim wrapper macros and rename WN macros. r=bholley. 2013-04-19 21:58:30 +02:00
Peter Van der Beken
e246f74b5d Bug 851465 - Remove slim wrappers - remove various slim wrapper code and checks. r=bholley. 2013-04-19 21:57:18 +02:00
Thomas Zimmermann
ec5028a72c Bug 880167: Replace SendDiscoveryTask by non-blocking implementation r=echou,gyeh
This patch replaces SendDiscoveryTask by a non-blocking implementation
that does not use the Bluetooth command thread. The request gets send
directly to the DBus, and its reply gets processed in the DBus thread
itself.
2013-04-16 16:42:35 +02:00
Ben Tian
67d0fb5343 Bug 883505 - [Bluetooth] Support for CHLD=0 of HFP, r=echou 2013-06-18 15:42:10 +08:00
Vicamo Yang
83039abc8c Bug 883798 - B2G SMS: test cases should initialize all necessary preferences and/or settings. r=gene 2013-06-19 10:18:39 +08:00
Chia-hung Tai
5c259090f7 Bug 884146 - B2G MMS: Can not receive MMS from Far-stone sim card. r=vyang 2013-06-18 18:17:43 +08:00
Edgar Chen
66a2bbcae0 Bug 860585 - Part 4: Marionette tests for cardLock. r=allstars.chh 2013-04-11 15:16:51 +08:00
Edgar Chen
e077bd7817 Bug 860585 - Part 3: RIL implementation changes for cardLock. r=allstars.chh 2013-04-11 15:12:09 +08:00
Edgar Chen
ababb85564 Bug 860585 - Part 2: Move cardLock API from mozMobileConnection to mozIccManager (DOM). r=bugs 2013-04-11 11:45:39 +08:00
Edgar Chen
28e6efeeaa Bug 860585 - Part 1: Move cardLock API from mozMobileConnection to mozIccManager (IDL). r=allstars.chh. sr=sicking
--HG--
rename : dom/icc/interfaces/nsIDOMICCCardLockErrorEvent.idl => dom/icc/interfaces/nsIDOMIccCardLockErrorEvent.idl
2013-04-11 11:19:36 +08:00
Ben Tian
9110d06780 Bug 879635 - [Bluetooth] [Hfp] Implement HFP 1.6 indicators activation and deactivation, r=echou 2013-06-07 16:54:13 +08:00
Jed Parsons
67243746aa Bug 881026 - Closing trusted UI should send null assertion to get() callers. r=benadida 2013-06-08 16:17:25 -07:00
Gregor Wagner
d0850fce0a Bug 882777 - Contacts API: Fix Date and pref properties. r=reuben 2013-06-13 15:43:30 -07:00
Gregor Wagner
abfdc384e8 Bug 877302 - [Dialer] when searching for a number in contacts, display partial matches (matching the end of the number). r=bent, reuben 2013-06-13 15:00:23 -07:00
Gregor Wagner
2028ac5d64 Bug 880644 - [SMS/MMS] Auto suggestions returning incorrect results. r=bent 2013-06-13 14:52:40 -07:00
Mike Shal
87c2fdb386 Bug 880245 - Move EXTRA_JS_MODULES to moz.build (conversion part 1); r=joey
From 69c3338a3287ff8cc97533e06069fc4d4cb7c5f6 Mon Sep 17 00:00:00 2001
2013-06-10 12:08:47 -04:00
Ed Morley
9f3d5d7e9d Merge mozilla-central and inbound 2013-06-13 10:31:46 +01:00
Ed Morley
5c8f5eac0b Merge latest green birch changeset and mozilla-central 2013-06-13 10:29:26 +01:00
James Kitchener
773d6fa5ec Bug 796850 - Change XMLHttpRequest interface to support ByteString r=bz 2013-06-13 01:20:10 -04:00
James Kitchener
b71cfc0ec2 Bug 796850 - Implement Code Generation for Bytestring in WebIDL bindings r=bz 2013-06-13 01:18:35 -04:00
James Kitchener
130d1ab83f Bug 796850 - Implement WebIDL parser support for Bytestring r=bz 2013-06-13 01:15:35 -04:00
Boris Zbarsky
9be8ee1733 Bug 880367 part 3. Add support for [ChromeOnly] on interface objects. r=smaug 2013-06-13 01:12:37 -04:00
Boris Zbarsky
1e9345e9b0 Bug 880367 part 2. Make ordering of named constructors in codegen deterministic. r=smaug
I ran into this when looking at the diff in codegen from part 1.
2013-06-13 01:12:33 -04:00
Boris Zbarsky
d2192352f3 Bug 880367 part 1. Change the "enabled" callback for WebIDL constructors to take a JSContext* and the object the constructor will be defined on. r=smaug,bholley 2013-06-13 01:12:26 -04:00
Edgar Chen
8390b18e46 Bug 880369 - Part 2: Xpcshell tests for mcc table. r=allstars.chh 2013-06-11 16:36:29 +08:00
Nicholas Nethercote
f38dda509b Bug 882520 - Two minor tweaks to the memory reporting paths. r=bhackett.
--HG--
extra : rebase_source : b6176cd0b0314c2216ccc79f76a34fd558876092
2013-06-12 20:14:52 -07:00
Ryan VanderMeulen
4a1fe86330 Merge m-c to inbound. 2013-06-12 22:02:20 -04:00
Reuben Morais
db0415d564 Bug 879537 - Be more strict when setting Date properties of contacts. r=gwagner
--HG--
extra : rebase_source : 61741dc83d4b1e4ca0a9bd7bae070fcb1aed63d1
2013-06-12 13:48:20 -07:00
Alexandre Lissy
be913587b9 Bug 882105 - Typo error breaking NetworkManager.js. r=vicamo
---
 dom/system/gonk/NetworkManager.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
2013-06-13 01:05:55 +08:00
Dave Hylands
df29c2d8ae Bug 881386 - DeviceStorage: Add .default attribute to webidl. r=Ms2ger 2013-06-12 09:30:23 -07:00
Ed Morley
c95b79e78d Merge mozilla-central and inbound 2013-06-12 08:41:06 +01:00
Phil Ringnalda
b1320ff326 Back out 57bb160f49d5:4e6b16f0d753 (bug 875157) for breaking master password tests 2013-06-12 00:00:25 -07:00
Ms2ger
1973d8c0b5 Bug 875784 - Move MozTimeManager to WebIDL; r=smaug 2013-06-12 09:00:07 +02:00
Ms2ger
64c8ded4a9 Bug 860731 - Part b: Use FileMode for LockedFile; r=janv 2013-06-12 09:00:06 +02:00
Ms2ger
f991a72953 Bug 860731 - Part a: Add 'extern' to the definition of EnumEntry tables; r=bz 2013-06-12 08:55:26 +02:00
Ms2ger
88ca948d77 Bug 877277 - Move the document.all getter into WebIDL; r=smaug 2013-06-12 08:55:00 +02:00
Ms2ger
09bb5c9224 Bug 718923 - Support document.all in standards mode and remove the pref to turn it off; r=smaug 2013-06-12 08:48:38 +02:00
Ms2ger
d2252d6788 No bug - Remove unused AnonXMLHttpRequest.webidl; kill-it=bz 2013-06-12 08:48:25 +02:00
Ms2ger
7738da34c7 Bug 880317 - Don't use nsIDOMDocument in nsScreen; r=mounir 2013-06-12 08:48:15 +02:00
Ryan VanderMeulen
27202e5e77 Merge m-c to inbound. 2013-06-11 21:03:14 -04:00
Ryan VanderMeulen
48564710fc Backed out changeset 1df122edcf0d (bug 823978) for bustage (again).
CLOSED TREE (again)
2013-06-11 15:27:46 -04:00
Ryan VanderMeulen
8ab9b838ed Merge m-c to inbound. 2013-06-11 15:02:04 -04:00
Ryan VanderMeulen
b5b7431bc4 Merge fx-team to m-c. 2013-06-11 15:00:51 -04:00
Benjamin Peterson
859ae9d3b2 Bug 823978 - Rename JSOPTION_STRICT to JSOPTION_EXTRA_WARNINGS. r=Waldo
--HG--
extra : rebase_source : 1396c8ec5bd99ab35343cfff2b87d22955671243
2013-06-11 11:30:18 -07:00
Mihai Sucan
58900d9aff Bug 861338 - [browserconsole] Cache Console.jsm API calls with ConsoleAPIStorage.jsm; r=jwalker 2013-06-07 20:13:48 +03:00
Edgar Chen
71c472cf88 Bug 880369 - Part 1: Check mcc table if EFad dose not contain the length of mnc. r=allstars.chh 2013-06-07 18:48:10 +08:00
Chia-hung Tai
12764443be Bug 880217 - [MMS]'undefined' tag appears instead of MMS in thread list view. r=gene.lian a=leo+ 2013-06-11 14:22:35 +08:00
Michael Wu
1dfaee3a9a Bug 869903 - Report background color on mozbrowserloadend, r=jlebar 2013-06-06 17:40:49 -04:00
Albert Crespell
c5083a9447 Bug 879793 - Update tests. r=clian 2013-06-07 18:57:07 +02:00
Albert Crespell
60c8fa8f91 Bug 879793 - Update stats when network interface is unregistered. r=clian 2013-06-06 20:40:50 +02:00
Mark Hammond
9db7d3fe9a Bug 875157 (part 1) - add isParentWindowMainWidgetVisible to nsIDOMWindowUtils. r=bz 2013-05-31 11:12:44 +10:00
David Zbarsky
aa9e223fa7 Bug 881128 - Remove nsIDOMGetSVGDocument r=bz 2013-06-11 21:56:26 -07:00
Phil Ringnalda
75ab5ae882 Back out 2ccb9ec11a9f:d27ecea31590 (bug 856410) for b2g mochitest-3 failures
CLOSED TREE
2013-06-11 21:24:56 -07:00
Andrea Marchesini
828f974e15 Bug 856410 - Implement futures - Part 6: Additional tests. r=mounir 2013-06-11 21:41:22 -04:00
Andrea Marchesini
5de7894704 Bug 856410 - Implement futures - Part 5: Put futures behind a pref. r=mounir 2013-06-11 21:41:22 -04:00
Andrea Marchesini
4aa6b77fef Bug 856410 - Implement futures - Part 4: Future.accept, Future.reject, Future.resolve. r=mounir 2013-06-11 21:41:22 -04:00
Andrea Marchesini
32512bb765 Bug 856410 - Implement futures - Part 3: resolver.resolve(new Future(). r=mounir 2013-06-11 21:41:22 -04:00
Andrea Marchesini
0cbca2866e Bug 856410 - Implement futures - Part 2: Future.then() and Future.catch(). r=mounir, r=bz, r=smaug 2013-06-11 21:41:22 -04:00
Andrea Marchesini
2e63e6e5c9 Bug 856410 - Implement futures - Part 1: Constructor, webidl, Done(). r=mounir, r=bz 2013-06-11 21:41:21 -04:00
Andrea Marchesini
8dcc6b62b5 Bug 856410 - Implement futures - Part 0: ErrorResult::StealJSException. r=bz 2013-06-11 21:41:21 -04:00
Eric Chou
c12b12b7e7 Bug 876823 - Fire DOMRequest.onerror event when Bluetooth*Manager.Connect() fails, r=gyeh 2013-06-11 18:24:19 +08:00