Scott Johnson
89cb36fde6
Backed out changeset 6d29c583d5c0 due to incorrect commit message.
2013-04-16 16:10:20 -05:00
Scott Johnson
c84bf8d036
Bug 803719: Add a toDOMRange API to CaretPosition and use it to maintain position for reflow-on-zoom feature. [r=kats,tn]
2013-04-16 16:08:38 -05:00
Boris Zbarsky
8ae76979d7
Bug 864590. Assert that the object is not null when wrapping WebIDL objects. r=peterv
2013-04-24 14:59:15 -04:00
Boris Zbarsky
7ecf36cfae
Bug 862629 part 2. Remove the now-unused scope object bit in js-to-native conversions. r=peterv
2013-04-24 14:59:15 -04:00
Boris Zbarsky
5e7cf4462d
Bug 862629 part 1. Stop playing compartment games with WebIDL callbacks and just use the given object as-is. r=peterv
2013-04-24 14:59:15 -04:00
Boris Zbarsky
21fbfb1e31
Bug 843264. Allow returning sequences of non-primitive types from callback methods. r=mccr8
2013-04-24 14:59:14 -04:00
Boris Zbarsky
1787ef6b9b
Bug 864535. Drop some comments from WebIDL proxy [[Delete]] implementations, since the spec has changed. r=waldo
2013-04-24 14:59:14 -04:00
David Keeler
740c10c2f8
bug 549697 - add click-to-play plugin UI to the addon manager r=unfocused r=jaws
...
--HG--
rename : browser/base/content/test/test_bug787619.html => browser/base/content/test/browser_bug787619.js
rename : browser/base/content/test/test_bug787619.html => browser/base/content/test/plugin_bug787619.html
2013-04-23 16:21:22 -07:00
Boris Zbarsky
706ec32a4e
Bug 766583 part 7. Stop declaring variadic arguments as const on the stack in bindings code. r=smaug
2013-04-25 19:03:07 -04:00
Boris Zbarsky
0859017e6d
Bug 766583 part 6. Stop declaring unions as const on the stack in bindings code. r=smaug
2013-04-25 19:03:07 -04:00
Boris Zbarsky
8e09a9abe7
Bug 766583 part 5. Stop declaring optional arguments as const on the stack in bindings code. r=smaug
2013-04-25 19:03:06 -04:00
Boris Zbarsky
59395a5279
Bug 766583 part 4. Stop declaring strings as const on the stack in bindings code. r=smaug
2013-04-25 19:03:06 -04:00
Boris Zbarsky
ff8b8c6147
Bug 766583 part 3. Stop declaring nullable things as const on the stack in bindings code. r=smaug
2013-04-25 19:03:06 -04:00
Boris Zbarsky
7a31b1a556
Bug 766583 part 2. Stop declaring sequences as const on the stack in bindings code. r=smaug
2013-04-25 19:03:06 -04:00
Boris Zbarsky
d101739d3f
Bug 766583 part 1. Stop declaring dictionaries as const on the stack in bindings code. r=smaug
2013-04-25 19:03:06 -04:00
Boris Zbarsky
7041704c76
Bug 861493. When passing arguments to an Xray for a WebIDL constructor, make sure to do the argument unwrapping before entering the content compartment. r=bholley,waldo
...
There are several changes here:
1) Adds some MutableThis methods to Optional, Nullable, and dictionaries to
effectively allow doing a const_cast without knowing the actual type being
templated over. I needed this because I do not in fact know that type in
the relevant code. I'm open to suggestions for a better name for this
method.
2) Adds some operator& to RootedJSValue to make it look more like a JS::Value,
and in particular so I can JS_WrapValue the thing in it.
3) Adds a Slot() method to NonNullLazyRootedObject, just like NonNull has.
4) Adds an operator& to LazyRootedObject to make it look more like JSObject* so
I can JS_WrapObject the thing in it.
5) Implements the actual rewrapping of the arguments into the content compartment.
6) Fixes a small preexisting bug in which we didn't look at named constructors
in getTypesFromDescriptor (this was causing my tests to not compile).
7) Changes Xrays to not enter the content compartment when calling a WebIDL
constructor.
8) Adds some friend API to report things as not being functions.
2013-04-25 19:03:05 -04:00
Ehsan Akhgari
38f134b992
Bug 859600 - Make AudioContext an EventTarget; r=smaug
2013-04-25 00:28:39 -04:00
Andrew McCreight
240a47eb4d
Bug 865544 - Add support for nsIDOMGlobalPropertyInitializer to JS-implemented WebIDL. r=bz
2013-04-25 14:31:42 -07:00
Rob Wood
6029013a9b
Bug 849714 - Fix intermittent failure in outgoing_answer_hangup_oncallschanged; r=jgriffin
2013-04-24 12:38:19 -04:00
Jeff Walden
3a748c9bea
Bug 864558 - Fix some minor issues with SMS sending and filtering. r=mounir, r=mrbkap taking into consideration a comment by bz
...
--HG--
extra : rebase_source : 6a63d12a77e7aec9d8719e338b138dcab7d1e3ac
2013-04-22 16:29:25 -07:00
Boris Zbarsky
804387378c
Bug 731746 part 4. When wrapping a JS-implemented webidl object, define the new object as a property on the implementing object. r=mccr8
2013-04-24 22:44:28 -04:00
Boris Zbarsky
6f14a34d23
Bug 731746 part 3. Change JS-implemented webidl codegen to always invoke the parent constructor if there is a parent interface. r=mccr8
2013-04-24 22:44:28 -04:00
Boris Zbarsky
ab31d7a007
Bug 731746 part 2. Change JS-implemented webidl codegen to pass an nsPIDOMWindow, not an nsISupports, to the object constructor. r=mccr8
2013-04-24 22:44:27 -04:00
David Zbarsky
40f02c7ae1
[Bug 864209] Remove Geolocation classinfo r=Ms2ger
2013-04-24 22:26:48 -04:00
Ryan VanderMeulen
3ac8f1751e
Merge m-c to inbound.
2013-04-24 21:51:04 -04:00
Matt Woodrow
5ffc497bd0
Bug 863922 - Use the device pixel size of plugin IOSurfaces since layers handles resolution scaling already. r=BenWa
2013-04-25 10:31:12 +12:00
Bobby Holley
f4fb2c0693
Bug 865260 - Use IsXrayWrapper rather than ObjectIsNativeWrapper in nsWindowSH. r=bz
...
There are some other uses of ObjectIsNativeWrapper in other scriptable helpers
that are tempting to remove as well, but it's probably just better to wait for
that stuff to just go away. Given that the issue we're running into here is
Window-specific, there's not a pressing need to fix the other stuff.
2013-04-24 15:21:26 -07:00
Boris Zbarsky
5099725926
Bug 860591. Install WebIDL quickstubs for event interfaces as needed. r=smaug
2013-04-12 10:51:25 -04:00
Matt Brubeck
cb941e9301
Back out cd218e07ede2, e57ac5581703, f53ad2a10ff8, ec91252c57d2, 2eca17711eff, 1997e63a1124 for build errors
2013-04-18 22:29:25 -07:00
David Zbarsky
5a0b79da5a
Bug 852055 - Pass an EventTarget argument to Document.createTouch in WebIDL r=bz
2013-04-19 00:48:03 -04:00
David Zbarsky
90a708a094
[Bug 857884] Use dom::EventTarget more instead of nsIDOMEventTarget Part 7 r=Ms2ger
2013-04-19 00:48:03 -04:00
David Zbarsky
0cc27eeace
[Bug 857884] Use dom::EventTarget more instead of nsIDOMEventTarget Part 6 r=Ms2ger
2013-04-19 00:48:02 -04:00
David Zbarsky
a07b590007
Bug 857884 - Use dom::EventTarget more in content/ and dom/ Part 4 r=Ms2ger
2013-04-19 00:48:01 -04:00
Olli Pettay
30ae6176d7
Bug 856351 - Paris binding for DragEvent, r=peterv
...
--HG--
extra : rebase_source : 695b5a3bf3641f0e39d33ca8718e1bc78695b09d
2013-04-19 02:13:35 +03:00
Boris Zbarsky
add8499ced
Bug 810644 part 2. Eliminate the now-unused CallEventHandler. r=smaug, sr=peterv
2013-01-03 14:02:42 -05:00
Boris Zbarsky
5df1da36da
Bug 810644 part 1. Switch setTimeout and setInterval to using WebIDL callback functions. r=smaug, sr=peterv
2013-01-03 14:02:36 -05:00
Adam Roach [:abr]
44c3f3f149
Bug 860952 - Add error site information to unexpectedCallbackAndFinish callback r=jsmith
2013-04-12 09:45:26 -05:00
Chia-hung Tai
220985b025
Bug 810091 - B2G MMS: Don't download message twice on receiving duplicated notification. r=vyang, r=gene.lian
2013-03-22 19:04:02 +08:00
Eric Chou
71d5471b39
Bug 823803 - Manage two server sockets (RFCOMM/EL2CAP) in BluetoothOppManager, r=mrbkap, r=gyeh
...
In order to solve the problem, BluetoothOppManager should maintain
two server sockets at the same time, one is RFCOMM socket, another
is EL2CAP socket.
2013-04-12 18:45:39 +08:00
Eric Chou
0f4f444972
Bug 823803 - Add L2CAP/EL2CAP Socket support, r=qdot, r=gyeh
...
This version of BlueZ from Code Aurora has added GOEP_PSM to Object
Push Profile service record, which means that remote devices may
connect with us via both L2CAP and RFCOMM. This patch completes
L2CAP/EL2CAP socket implementation.
2013-04-12 18:45:37 +08:00
Reuben Morais
e485ff7ccc
Bug 823999 - Add logging to the Contacts code to diagnose intermittent failure.
...
--HG--
extra : rebase_source : 7ded707e14bb280ea93582da5dbd460248518418
2013-04-12 01:51:49 -07:00
Gina Yeh
14e690ffaf
Bug 859727 - Should set force to FORCE_NONE after Sco is disconnected, r=echou
2013-04-12 16:27:21 +08:00
Vicamo Yang
11bc782ec0
Bug 854790 4-2/4: test cases for filtering messages by threadId. r=gene
2013-04-12 14:56:27 +08:00
Vicamo Yang
731be898f4
Bug 854790 4-1/4: refactor test_filter_mixed.js so that we have multiple messages in one thread. r=gene
2013-04-12 14:56:23 +08:00
Vicamo Yang
d1d7dcc3f5
Bug 854790 3/4: RIL. r=gene
2013-04-12 14:56:19 +08:00
Vicamo Yang
7d2b63b230
Bug 854790 2/4: DOM. r=mounir
2013-04-12 14:56:16 +08:00
Vicamo Yang
4b239ac3db
Bug 854790 1/4: Support filtering mobile messages with thread id. Interface changes. sr=mounir
2013-04-12 14:56:12 +08:00
Reuben Morais
615be796de
Bug 860918 - Disable the mozContact constructor if the dom.mozContacts.enabled is not set. r=gwagner
...
--HG--
extra : rebase_source : f5a5291a4b1c74f9048ca04067d7fc8bf02ad1f9
2013-04-11 21:45:40 -07:00
Gregor Wagner
d33503213b
Bug 859601 - mozSetting API - return undefined if the API is unsupported on the platform, not null. r=bent
2013-04-11 20:40:44 -07:00
Ehsan Akhgari
9ce6df6da6
Bug 859595 - Implement the alternate names for AudioBufferSourceNode, AudioContext and AudioParam; r=bzbarsky
...
Let this be mentioned in our code base history that I wrote this patch
with tears in my eyes. This is the saddest thing I've ever had to do to
Gecko. :(
--HG--
extra : rebase_source : 798e5b1dc8af51a399189dd05bc59ac077670820
2013-04-11 22:08:05 -04:00
Reuben Morais
3d99395f09
Bug 861032 - Fix -Wreinterpret-base-class warning on Codegen.py. r=bz
...
--HG--
extra : rebase_source : c05d51d8aeed182b85333a347f0b1dfb5d6b1ef9
2013-04-11 19:29:50 -07:00
Joshua Cranmer
292c1594b0
Bug 856108 - Port static analyses to clang, part 2b: use MOZ_STACK_CLASS in dom. r=Ms2ger
2013-04-11 22:20:18 -05:00
Reuben Morais
d36c5400cb
Bug 856042 - Tighten up sanitization of arguments to the Contacts API. r=bz r=gwagner
2013-04-05 12:22:00 -07:00
Ehsan Akhgari
fd5118b7ee
Bug 861021 - Mark AudioBufferSourceNode.playbackRate as not-addrefed; r=bzbarsky
2013-04-11 21:44:42 -04:00
Reuben Morais
28b5721251
Bug 856358 - Follow-up, fix UUID mismatch in ContactManager interface.
2013-04-11 17:25:38 -07:00
Steve Fink
c264467809
Bug 789593 - Clone typed arrays by cloning their buffers and only saving construction parameters. r=jorendorff, bent
...
Also enters a compartment where needed, and bumps both the structured clone and IndexedDB schema versions
2013-02-22 13:43:28 -08:00
Reuben Morais
89e8f96321
Bug 856358 - Remove ContactProperties types from window. r=gwagner
...
--HG--
rename : dom/interfaces/contacts/nsIDOMContactProperties.idl => dom/interfaces/contacts/nsIContactProperties.idl
2013-04-10 16:09:10 -07:00
Aaron Klotz
eb4321380d
Bug 858800: Removes premature cleanup of Plugin Hang UI's browser-side IPC. r=bsmedberg
...
--HG--
extra : rebase_source : a587db8df51399a1b68e2912dcc9063c05319080
2013-04-11 15:08:55 -06:00
Gregor Wagner
32188acc5d
Bug 859601 - mozContacts API - return undefined if the API is unsupported on the platform, not null. r=bent
2013-04-11 17:44:33 -04:00
Guilherme de Araujo ext:(%2C%20Brandon%20Waterloo%20%3Cbrandon.waterloo%40gmail.com%3E)
d245702b6e
Bug 851128 - Introduce custom recognition for the double-tap gesture. r=smichaud
...
Cocoa does not implement the double-tap gesture by default, so the gesture had to be recognized manually.
2013-04-10 14:38:26 -04:00
Ryan VanderMeulen
e9c65dfa10
Backed out 2 changesets (bug 850362, bug 600307) for Windows XP leaks on a CLOSED TREE.
2013-04-11 17:00:28 -04:00
Ryan VanderMeulen
d53f153a64
Backed out changeset 5e573a8f7ce1 (bug 856358) for bustage on a CLOSED TREE.
...
--HG--
rename : dom/interfaces/contacts/nsIContactProperties.idl => dom/interfaces/contacts/nsIDOMContactProperties.idl
2013-04-11 15:48:38 -04:00
leo.bugzilla.gecko@gmail.com
4f9c053e1a
Bug 852057 - Sort contacts correctly when givenName or familyName is null. r=gwagner
2013-04-11 12:35:24 -07:00
Reuben Morais
5a622c4595
Bug 856358 - Remove ContactProperties types from window. r=gwagner
...
--HG--
rename : dom/interfaces/contacts/nsIDOMContactProperties.idl => dom/interfaces/contacts/nsIContactProperties.idl
extra : rebase_source : 3581687c7285ed8e9c653d1d71f2b60837708679
2013-04-10 16:09:10 -07:00
Michael Vines
24b1b2d434
Bug 859486 - Add system property to enable the unloading of Wi-Fi drivers r=mrbkap
2013-04-10 20:52:48 -07:00
Jacek Szpot
8123bfdfc5
Bug 854503 - Rename JS unwrapping functions. r=bholley
2013-04-11 11:50:18 -07:00
Boris Zbarsky
5abeb6d6a7
Bug 860551. Fix instanceof for prototype-less interface objects to be saner. r=dzbarsky
2013-04-11 14:31:06 -04:00
Boris Zbarsky
98cbeae46b
Bug 860473 part 3. Root ErrorResult::ThrowJSException. r=evilpie,smaug
2013-04-11 14:31:06 -04:00
Boris Zbarsky
e20f6386fd
Bug 860473 part 2. Root WebIDL dictionary ToObject. r=evilpie,smaug
2013-04-11 14:31:06 -04:00
Boris Zbarsky
79d7391b5b
Bug 860473 part 1. Root WebIDL dictionary ParseJSON. r=evilpie, smaug
2013-04-11 14:31:05 -04:00
Ms2ger
20a9e6b03b
bug 851542 - Gamepad to webidl (with nsIVariant). r=smaug
...
--HG--
extra : rebase_source : ae08a894b592465641ed774688957a446c8966a7
2013-04-09 08:43:25 -04:00
Ryan VanderMeulen
99647ac22c
Backed out changesets a550dadafa30 and 315f6b451d07 (bug 857884) for mochitest failures on a CLOSED TREE.
2013-04-11 13:59:02 -04:00
Honza Bambas
0acb300e87
Bug 850362 - reintroduce bug 842852 - localStorage optimizations, r=mak77
2013-04-11 18:26:15 +02:00
Honza Bambas
52e949bcbc
Bug 600307 - localStorage and sessionStorage implementation overhaul, r=mak77+smaug, sr=smaug
2013-04-11 18:26:06 +02:00
David Zbarsky
a5cb73b253
Bug 857884 - Use dom::EventTarget more in content/ and dom/ Part 4 r=Ms2ger
2013-04-11 12:24:47 -04:00
David Keeler
201dfe5cf1
bug 856777 - observe plugin-info-updated in nsPluginArray, not Navigator r=khuey
2013-04-10 13:59:45 -07:00
Ted Mielczarek
c9ccf9b191
Backed out changeset dcf67f13c6bb, bug 851542 for B2G bustage.
2013-04-11 09:23:14 -04:00
Ms2ger
6dc688b31d
bug 851542 - Gamepad to webidl (with nsIVariant). r=smaug
2013-04-09 08:43:25 -04:00
Stephen Pohl
b83387a47d
Bug 860429 - Make NPPVJavascriptPushCallerBool a no-op. r=bsmedberg
2013-04-11 07:48:10 -04:00
Henrik Skupin
31cb07457a
Bug 858135 - Update LocalMediaStreamPlayback inheritance to use Object.create(). r=jesup
2013-04-11 07:48:09 -04:00
Gabor Krizsanits
16f48f59cf
Bug 820170 - Wrapping nodes into documents compartment. r=bholley, r=enn
2013-04-11 11:59:42 +02:00
Peter Van der Beken
16af060454
Bug 852094 - Support Unforgeable on proxy-based DOM bindings. r=bz.
2012-12-20 10:56:11 +01:00
Olli Pettay
80a4167e99
Bug 863950 - Crash with outdated CaretPosition object, r=bz
2013-04-20 16:11:20 +03:00
Marco Bonardo
47b3a19e95
Bug 861302 - Allow indedexDB to be used from about:home
...
r=bz
2013-04-20 13:33:34 +02:00
Boris Zbarsky
ab783c1e1a
Test for bug 862702. r=peterv
2013-04-19 23:04:23 -04:00
Boris Zbarsky
afd40a2989
Bug 863386. Add support for nullable enum arguments and return values. r=mccr8
...
This incidentally fixes bug 843355
2013-04-19 23:04:19 -04:00
Boris Zbarsky
a04a090195
Bug 862917. Remove the non-standard window.defaultStatus. r=smaug,gavin
2013-04-19 23:03:02 -04:00
Boris Zbarsky
14089d7cd3
Bug 862540. Make window.status actually be settable (but have no effect unless the pref that no one ever sets is set). r=smaug
2013-04-19 23:03:01 -04:00
David Zbarsky
5826da3d17
Backout 2201d650ac90 for not building on Windows on a CLOSED TREE
2013-04-19 18:57:56 -04:00
David Zbarsky
9190c0be59
Backout f710f8fb2ab0 for not building on windows
2013-04-19 18:57:11 -04:00
David Zbarsky
a2ca7e6c91
Bug 861729 - Remove nsPIDOMWindow::mDocument r=Ms2ger
2013-04-19 18:18:33 -04:00
David Zbarsky
1cc79b4d68
Bug 861729 - Remove nsPIDOMWindow::GetExtantDocument r=Ms2ger
2013-04-19 18:18:33 -04:00
David Zbarsky
a0911f7978
[Bug 857884] Use dom::EventTarget more instead of nsIDOMEventTarget Part 6 r=Ms2ger
2013-04-19 18:18:33 -04:00
David Zbarsky
335c6fc326
Bug 857884 - Use dom::EventTarget more in content/ and dom/ Part 4 r=Ms2ger
2013-04-19 18:18:32 -04:00
David Zbarsky
cda8f8b22e
Bug 857439 Followup: Add null-checks for WrapObject failing and assert that the JSObject took ownership if WrapObject succeeded r=bz
2013-04-19 18:18:31 -04:00
Simon Montagu
0853698054
Change tests that depended on the behaviour before bug 151407 was fixed, r=Ms2ger
2013-04-23 08:11:59 +03:00
Simon Montagu
8bfd310a04
Fix document.dir getters and setters to (a) work and (b) conform to HTML5. Bug 151407, r=ehsan
2013-04-14 05:37:48 -07:00
Wes Kocher
8fd473289f
Merge m-c to m-c
2013-04-22 19:00:15 -07:00
Reuben Morais
93be77a06c
Bug 864578 - Follow up, fixing test.
...
--HG--
extra : rebase_source : ace505d178de7ce66e5733df74291b31471a0202
2013-04-22 18:22:47 -07:00
Garrett Robinson
a255f6778a
Bug 837351 - Log blocked mixed content to the Error and Web Consoles. r=smaug
2013-04-22 18:08:18 -07:00
Reuben Morais
0cf9c2902c
Bug 864578 - Allow NamedConstructor and NoInterfaceObject in the same interface. r=bz
...
--HG--
extra : rebase_source : 1c15c840a72539cfd97d54dbaef4908b1571aefa
2013-04-22 18:05:25 -07:00
Xin Zhang
5e389b35b8
Bug 857385 - Make various JSFunctionSpec arrays const. r=waldo
...
--HG--
extra : rebase_source : 24141998ffad3b0e6bad98b6fc0ce3754e448d5b
2013-04-22 14:15:49 -07:00
Xin Zhang
a0b5d7e7b5
Bug 857385 - Make various JSPropertySpec arrays const. r=waldo
...
--HG--
extra : rebase_source : 4ad63f7ddf8c441219bb7f30e19d66abf1747fe2
2013-04-22 14:15:36 -07:00
Olli Pettay
bab076c604
Bug 856338 - Using sequence<foo>? as an argument type crashes when passing non-null value, p=Ms2ger+smaug,r=bz
...
--HG--
extra : rebase_source : fb54e52db051584333c9430b0b000ee052e5b2d7
2013-04-23 02:49:49 +03:00
John Schoenick
da79205d6c
Backout 9423207656dd and d226a39b4181 (Bug 863792) for triggering bug 854082 crashes, the fix for which was backed out. CLOSED TREE
2013-04-22 16:33:38 -07:00
Ehsan Akhgari
34e21f4536
Backed out changeset fdaa0659fe13 (bug 863324) because of build bustage on a CLOSED TREE
...
--HG--
rename : gfx/layers/ipc/PLayerTransaction.ipdl => gfx/layers/ipc/PLayers.ipdl
rename : gfx/layers/ipc/LayerTransactionChild.cpp => gfx/layers/ipc/ShadowLayersChild.cpp
rename : gfx/layers/ipc/LayerTransactionChild.h => gfx/layers/ipc/ShadowLayersChild.h
rename : gfx/layers/ipc/LayerTransactionParent.cpp => gfx/layers/ipc/ShadowLayersParent.cpp
rename : gfx/layers/ipc/LayerTransactionParent.h => gfx/layers/ipc/ShadowLayersParent.h
2013-04-22 18:12:15 -04:00
John Schoenick
cb724a84c5
Backout e3eaea876a18, 3aaf738a04d8, and 43d1b14e8920 (Bug 854082) for orange on a CLOSED TREE
2013-04-22 14:58:15 -07:00
Steven Michaud
24a888e6cc
Bug 851128 - Backout patch because it caused bug 862417 and bug 864053. r=bgirard
2013-04-22 16:41:50 -05:00
Nicolas Silva
e4c0f3bbfd
Bug 863324 - Rename PLayers into PLayerTransaction, r=jrmuizel
...
--HG--
rename : gfx/layers/ipc/ShadowLayersChild.cpp => gfx/layers/ipc/LayerTransactionChild.cpp
rename : gfx/layers/ipc/ShadowLayersChild.h => gfx/layers/ipc/LayerTransactionChild.h
rename : gfx/layers/ipc/ShadowLayersParent.cpp => gfx/layers/ipc/LayerTransactionParent.cpp
rename : gfx/layers/ipc/ShadowLayersParent.h => gfx/layers/ipc/LayerTransactionParent.h
rename : gfx/layers/ipc/PLayers.ipdl => gfx/layers/ipc/PLayerTransaction.ipdl
2013-04-22 22:51:11 -04:00
John Schoenick
50a915a030
Bug 863792 - Test. r=josh
2013-04-22 13:20:59 -07:00
John Schoenick
a4e365d0c5
Bug 854082 - Cleanup plugin frame ownership, prevent losing our frame due to re-entrance. r=bsmedberg
2013-04-22 13:20:59 -07:00
John Schoenick
3dd9eae1e8
Bug 854082 - Test. r=bsmedberg
2013-04-22 13:20:58 -07:00
Boris Zbarsky
0c64b1ab00
Bug 865961. Root the scope argument of wrap-the-xpconnect-object helpers in WebIDL bindings. r=ms2ger
2013-04-29 17:33:42 -04:00
Boris Zbarsky
8e7bf52db8
Bug 717637. Stop using non-global parent objects for everything that's not an element, since having a mix of parent objects makes us fail shape guards in the JIT. r=peterv
2013-04-29 17:33:41 -04:00
Brandon Waterloo
6229311711
Bug 863841 - Implement recognition of double-tap gestures with smartMagnifyWithEvent (Mountain Lion and up), and magnifyWithEvent (Lion). r=smichaud, r=masayuki
...
On 10.6 SDK, it was necessary to change nsCocoaWindow.mm/h in order to make it call magnifyWithEvent for double-tap gestures properly.
2013-04-29 11:24:26 -04:00
Joey Armstrong
12356a4c50
bug 844655: Port XPCSHELL_TESTS to moz.build as XPCSHELL_TESTS_MANIFESTS
2013-04-29 14:49:00 -04:00
Bobby Holley
402c35b1ff
Bug 865729 - Remove nsIJSContextStack from dom/foo. r=gabor
2013-04-29 11:16:18 -07:00
John Schoenick
54a10ae3a7
Bug 863792 - Test. r=josh
2013-04-23 13:21:29 -07:00
John Schoenick
156b1d3e6b
Bug 854082 - Cleanup plugin frame ownership, prevent losing our frame due to re-entrance. r=bsmedberg
2013-04-23 13:21:28 -07:00
John Schoenick
e274d300a6
Bug 854082 - Test. r=bsmedberg
2013-04-23 13:21:26 -07:00
John Schoenick
a84b022fb0
Bug 854082 - Attribute bug 621618 assertions to the proper test. r=gfritzsche
2013-04-23 13:21:20 -07:00
Benjamin Smedberg
261998a5da
Bug 418615 - Neuter the code which tries to reframe existing plugin instances when navigator.plugins.refresh(true) is called. Instead, only scan for new plugins, unload unused plugins. The DOM code will continue to refresh the current page which calls navigator.plugins.refresh(true). r=jschoenick sr=bz
2013-04-23 16:02:12 -04:00
Ryan VanderMeulen
f636341f4b
Merge m-c to inbound.
2013-04-23 15:05:21 -04:00
Andrea Marchesini
e23abdeffe
Bug 864518 - HTMLMediaElement::mAudioChannelAgent not declared to CC, r=bz
...
Bug 864518 - HTMLMediaElement::mAudioChannelAgent not declared to CC, r=bz
2013-04-23 08:28:00 -07:00
Tom Schuster
88d7dfb0b5
Bug 862834 - Root mozJSComponentLoader. r=bholley,terrence
2013-04-23 17:48:05 +02:00
Ms2ger
1248f673c4
Backout changeset baf184596a7b for build errors on a CLOSED TREE.
2013-04-16 19:07:38 +02:00
Gabor Krizsanits
68aa3f8764
Bug 820170 - Wrapping nodes into documents compartment. r=bholley
2013-04-16 11:31:26 +02:00
Kyle Huey
927afd62a0
Bug 855276: Diagnostic patch. r=bent
2013-04-16 09:09:11 -07:00
Benoit Girard
365e7e90d7
Backout cb37a2ae805f on a CLOSED TREE
2013-04-10 19:43:20 -04:00
Benoit Girard
fc92f810d8
Backout e090321a025c
2013-04-10 19:42:56 -04:00
Ryan VanderMeulen
a20b983060
Backed out changeset 9b9a5c42fb46 (bug 859601) for bustage on a CLOSED TREE.
2013-04-10 15:44:33 -04:00
Ben Turner
ba2f222446
Bug 859591 - 'Aborted transactions sometimes block all remaining transactions forever'. r=khuey.
2013-04-10 09:27:00 -07:00
Ryan VanderMeulen
a7b2f083b6
Backed out changeset 366758c34e31 (bug 859591) for xpcshell failures.
2013-04-10 14:45:40 -04:00
Aryeh Gregor
635f3e0133
Bug 857102 part 5 - Make NS_NewDocumentFragment etc. infallible; r=bz
2013-04-10 17:15:54 +03:00
Aryeh Gregor
f080632c9a
Bug 857102 part 4 - Make NS_NewCommentNode and nsIDocument::CreateCommentNode infallible; r=bz
2013-04-04 15:02:22 +03:00
Aryeh Gregor
fe91515d0c
Bug 857102 part 3 - Make various GetNodeInfo callers infallible; r=bz
2013-04-04 15:01:11 +03:00
Aryeh Gregor
f9e1831a55
Bug 857102 part 2 - Make NS_NewTextNode and nsIDocument::CreateTextNode infallible; r=bz
2013-04-04 15:01:08 +03:00
Benoit Girard
d0646b8313
Bug 734691 - Port multi-thread support to win/mac. r=snorp,smaug
...
--HG--
extra : rebase_source : 600b1e660bb4441e4bb4b83f2ec5c7f4bea93ae0
2013-04-03 18:59:17 -04:00
James Willcox
10b87f5628
Bug 734691 - Add multi-thread support to profiler r=benwa
...
--HG--
extra : rebase_source : 72fdb609181572e9b3aad5dafdfcffb59d33ab5b
2013-03-29 15:34:49 -04:00
Gregor Wagner
1db1c86af3
Bug 859601 - mozContacts API - return undefined if the API is unsupported on the platform, not null. r=bent
2013-04-10 11:15:51 -07:00
Boris Zbarsky
2d6c54904c
Bug 859503. Make unknown extended attributes into parse errors. r=khuey
2013-04-10 13:49:06 -04:00
Boris Zbarsky
8ad22459f8
Bug 851917. Get rid of the classinfo for HTMLObjectElement, HTMLEmbedElement, HTMLAppletElement, and rip out nsHTMLPluginObjElementSH. r=peterv,johns
2013-04-10 13:49:05 -04:00
David Keeler
d1fb26b865
bug 854467 - fix nsIPluginTag enabled state API r=bsmedberg r=unfocused
2013-03-27 14:06:43 -07:00
Ben Turner
5110db43d7
Bug 859591 - 'Aborted transactions sometimes block all remaining transactions forever'. r=khuey.
2013-04-10 09:27:00 -07:00
Andrea Marchesini
445ca08423
Bug 858893 - Follow-up to fix B2G bustage on a CLOSED TREE.
2013-04-10 11:08:08 -04:00
Andrea Marchesini
7268b75aaf
Bug 858893 - Port DesktopNotification to WebIDL. r=Ms2ger
2013-04-10 10:20:43 -04:00
Andrea Marchesini
55b96a77aa
Bug 858893 - Rename nsIDOMDesktopNotification to DesktopNotification. r=Ms2ger
...
--HG--
rename : dom/src/notification/nsDesktopNotification.cpp => dom/src/notification/DesktopNotification.cpp
rename : dom/src/notification/nsDesktopNotification.h => dom/src/notification/DesktopNotification.h
2013-04-10 10:20:43 -04:00
Jim Mathies
871578852d
Bug 858526 - tests. r=ehsan
2013-04-10 09:02:44 -05:00
Patrick Wang
0c21351fa4
Bug 847744: Part 5 - IPC for retrieveMMS. r=vicamo
2013-04-10 20:18:43 +08:00
Patrick Wang
b1e982604b
Bug 847744: Part 4 - IPC implementation for MMS send(). r=jdm,vicamo,mrbkap
2013-04-10 20:18:41 +08:00
Patrick Wang
c9153dd2e1
Bug 847744: Part 3 - IPDL change. r=vicamo,jdm
2013-04-10 20:18:38 +08:00
Patrick Wang
88ee22dc4e
Bug 847744: Part 2 - Use sms-* topic to notify mms observers. r=vicamo
2013-04-10 20:18:35 +08:00
Patrick Wang
6e519e5d55
Bug 847744: Part 1 - Create MmsService for content process. r=vicamo
...
--HG--
rename : dom/mobilemessage/src/SmsServicesFactory.h => dom/mobilemessage/src/android/MmsService.h
rename : dom/mobilemessage/src/SmsServicesFactory.h => dom/mobilemessage/src/fallback/MmsService.h
2013-04-10 20:18:32 +08:00
Bas Schouten
7d182a2102
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
...
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
Chia-hung Tai
4905c4febb
Bug 855607 - B2G MMS: Notify user while retrieving expiried notification indication. r=vyang
2013-04-09 16:57:01 +08:00
Kyle Huey
ba2e972842
Bug 859894: Reland on this CLOSED TREE with a CLOBBER.
2013-04-09 15:39:44 -07:00
Kyle Huey
f37712a023
Back out bug 859894 to open this CLOSED TREE.
2013-04-09 15:33:05 -07:00
Kyle Huey
60488146c6
Bug 859894: Switch dom/bindings off of mddepend.pl. r=ted
2013-04-09 15:11:43 -07:00
Kyle Huey
065344fe65
Bug 855276: Moar diagnostics.
2013-04-09 15:08:28 -07:00
Nikhil Marathe
215f5336a3
Bug 851253 - SimplePush: Only wakeup apps that have registrations. r=jlebar
...
--HG--
extra : rebase_source : bbca711265f60ee06124d82d82077c3e02aca02a
2013-04-09 14:12:35 -07:00
Adam Roach [:abr]
204a094ad5
Bug 856425: Call onicecandidate with a null candidate immediately after setLocalDescription succeeds r=ekr
2013-04-09 16:18:32 -05:00
Jan-Ivar Bruaroey
a539b3fbc7
Bug 855769: Wire up TURN support in RTCPeerConnection config r=jesup
2013-03-29 19:02:08 -04:00
Paul Adenot
d174da3ba1
Bug 854336 - Implement the playbackRate property of AudioBufferSourceNode. r=ehsan
2013-04-09 14:47:42 +02:00
Doug Turner
f005931815
Bug 856440 - Use global preference object instead of a getter. r=nsm
...
--HG--
extra : rebase_source : 1d828675c711d0d862a48370ebc207d4b7f0e205
2013-04-09 11:02:00 -07:00
Stephen Pohl
28ee11a080
Bug 678392 - Add support for swipe animation as in Safari. r=smichaud,jaws,felipc
2013-04-09 14:44:01 -05:00
Ryan VanderMeulen
0558957065
Merge m-c to inbound.
2013-04-09 15:29:13 -04:00
Ryan VanderMeulen
ff194700f0
Backed out changeset 9983874bfa63 (bug 854467) for bustage on a CLOSED TREE.
2013-04-09 13:45:39 -04:00
Fabrice Desré
b2ab564e97
Bug 859307 - [updates] wrong behavior when the manifest changes but not the packaged zip r=ferjm
2013-04-09 10:18:49 -07:00
Justin Lebar
bc068017b7
No bug: Fix typo in comment in TabContext.h. r=me DONTBUILD
2013-04-09 13:12:15 -04:00
Ryan VanderMeulen
080b1d0e83
Merge m-c to fx-team.
2013-04-09 08:17:45 -04:00
Mihai Sucan
f74bb51834
Bug 808370 - Use the VariablesView in webconsole; r=past,vporof,paul
2013-04-09 12:46:30 +03:00
Phil Ringnalda
67885fa626
Back out f55d9235d5a0 (bug 859200) for test_ril_worker_icc.js failure
2013-04-08 22:49:54 -07:00
Trevor Saunders
c318b7cf14
bug 859646 - fix b2g code that checks what infallible TArray::EnsureLengthAtleast() returns r=jlebar
2013-04-08 23:35:56 -04:00
Vicamo Yang
572a608ee9
Bug 749086 - 3/3: fix test cases. r=gwagner
2013-04-10 00:41:31 +08:00
Vicamo Yang
ac29d93f96
Bug 749086 - 2/3: DOM & IPC changes. r=bent
2013-04-10 00:41:27 +08:00
Vicamo Yang
fee1c421b5
Bug 749086 - 1/3: Use DOMRequest instead of SmsRequest. Interface changes. sr=sicking, r=bent
2013-04-10 00:41:23 +08:00
Hiroyuki Ikezoe
6a40c32275
Bug 859200 - Get properties for RIL as boolean. r=allstars.chh
2013-04-08 19:20:48 +08:00
Ehsan Akhgari
112a55b741
Bug 859602 - Remove AudioParam.minValue/maxValue; r=bzbarsky
2013-04-08 21:57:54 -04:00
Ehsan Akhgari
6f3b411b8e
Bug 859594 - Remove AudioSourceNode; r=bzbarsky
2013-04-08 22:45:02 -04:00
Boris Zbarsky
76307e1b88
Back out Bug 810644 part 1 to fix b2g test_closeOnGC.html orange on CLOSED TREE
2013-04-08 22:56:06 -04:00
Boris Zbarsky
899a6e9137
Back out Bug 810644 part 2 to fix b2g test_closeOnGC.html orange.
2013-04-08 22:55:15 -04:00
Gavin Sharp
cfdaaeeded
Bug 691647 Part 1: clean up nsISidebar interface by removing the non-standard addPersistentPanel/addPanel methods, and adjusting method arguments to avoid the use of string/wstring. r=jst, sr=sicking
...
--HG--
extra : rebase_source : f8214c757d49f433c37563e9ceed86e81f25eb1e
2013-04-08 19:22:48 -07:00
Vicamo Yang
449fbe8ba8
Bug 749086 - 3/3: fix test cases. r=gwagner
2013-04-09 10:22:23 +08:00
Vicamo Yang
774b9419e0
Bug 749086 - 2/3: DOM & IPC changes. r=bent
2013-04-09 10:22:19 +08:00
Vicamo Yang
9aa369c31e
Bug 749086 - 1/3: Use DOMRequest instead of SmsRequest. Interface changes. sr=sicking, r=bent
2013-04-09 10:22:15 +08:00
Vicamo Yang
9d0e30e07c
Bug 849739 5/5: test cases. r=gwagner
2013-04-09 10:22:07 +08:00
Vicamo Yang
a554bab576
Bug 849739 4/5: RIL. r=gwagner
2013-04-09 10:22:03 +08:00
Vicamo Yang
4be71d4339
Bug 849739 3/5: IPC. r=bent
2013-04-09 10:21:59 +08:00
Vicamo Yang
ded9ac336c
Bug 849739 2/5: DOM. r=mounir,mrbkap
2013-04-09 10:21:54 +08:00
Vicamo Yang
aefe48b108
Bug 849739 1/5 - WebSMS: Replace GetThreadList() with DOMCursor based GetThreads(). Interface changes. sr=mounir, r=bent
2013-04-09 10:21:50 +08:00
Vicamo Yang
ae614c2b83
Bug 838467 5/5: test cases. r=gwagner
2013-04-09 10:21:43 +08:00
Vicamo Yang
0db2ccf508
Bug 838467 4/5: RIL. r=gwagner
2013-04-09 10:21:39 +08:00
Vicamo Yang
94c7edd991
Bug 838467 3/5: IPC. r=sicking,bent
2013-04-09 10:21:35 +08:00
Vicamo Yang
18a137611d
Bug 838467 2/5: DOM implementation. r=sicking,bent
2013-04-09 10:21:31 +08:00
Vicamo Yang
4e36f20f06
Bug 838467 1/5: use DOMCursor instead of SmsCursor. Interface changes. sr=sicking, r=bent
2013-04-09 10:21:25 +08:00
Ryan VanderMeulen
8a408a9bc9
Backed out changesets ab64b048ad04 and 025d24d7fee8 (bug 734691) for leaks.
2013-04-08 22:16:21 -04:00
Jason Smith
be5f1d1d63
Bug 850275 - Adds some basic mochitests for offer media constriants. r=jesup
2013-04-02 08:06:59 -07:00
Reuben Morais
9ca999f53a
Bug 856923 - Don't stop installing permissions if one of them has an invalid entry in the manifest. r=gwagner
2013-04-05 16:38:08 -07:00
Georg Fritzsche
2ab966de91
Bug 857589 - Bail out without warnings when no plugins registry key is present. r=bsmedberg
2013-04-03 16:24:03 +02:00
Ehsan Akhgari
e029597932
Bug 856455 - Make nsCOMArray::SetCapacity return void; r=bsmedberg
...
--HG--
extra : rebase_source : 38cdef904f9b7fc33bd3f41bd19b1778dfbd7990
2013-03-31 16:06:18 -04:00
Ben Turner
65cb4d086c
Bug 858674 - 'Tweak SQLite pragmas on mobile devices for space savings'. r=khuey.
2013-04-08 12:47:13 -07:00
Benoit Girard
732c5f013c
Bug 734691 - Port multi-thread support to win/mac. r=snorp,smaug
...
--HG--
extra : rebase_source : 172d75f2183c5ba50ce709aeefcd3534a35724e5
2013-04-03 18:59:17 -04:00
James Willcox
2975e5cff2
Bug 734691 - Add multi-thread support to profiler r=benwa
...
--HG--
extra : rebase_source : 8367dc61f9f9026d0110ffe43d5d4d0aa9129e24
2013-03-29 15:34:49 -04:00
Ehsan Akhgari
1f4326e6c7
Backed out changeset d0d75e76d41f (bug 857417) for crashes during tests
2013-04-08 18:48:38 -04:00
Jason Smith
2b05adbd6c
Bug 836349 - Crashtest for bug 836349. r=abr
...
DONTBUILD
2013-04-08 16:14:24 -05:00
Ryan VanderMeulen
6aa3947d49
Backed out changeset 6c40b2d396c6 (bug 836349) for a bad commit message.
2013-04-08 17:29:38 -04:00
Adam Roach [:abr]
b6a0057d67
# HG changeset patch
...
# User Jason Smith <jsmith@mozilla.com>
# Date 1364784773 25200
# Node ID 509272e28c38cc8962e67465e3be58281d9af33a
# Parent 0b7c27024048cdfbbd62005d1c4ad5e7f6edf8a8
bug 836349 - Crashtest for bug 836349. r=abr
2013-04-08 16:14:24 -05:00
Boris Zbarsky
58fc5c200e
Bug 856428. Don't try to root an uninitialized value. r=peterv
2013-04-08 17:05:22 -04:00
Boris Zbarsky
e5adb523ed
Bug 857417. Trigger a fatal assertion when wrapping a wrappercached and nsISupports WebIDL object which has the wrapper cache before the nsISupports in its object layout. r=khuey
2013-04-08 17:04:21 -04:00
Boris Zbarsky
3e0909e46e
Bug 688691. Warn when LenientThis actually causes us to not throw. r=ms2ger
2013-04-08 17:04:21 -04:00
David Keeler
932324bf5d
bug 854467 - fix nsIPluginTag enabled state API r=bsmedberg r=unfocused
2013-03-27 14:06:43 -07:00
Vicamo Yang
db1d5581cd
Bug 849739 4/4: RIL. r=gwagner
2013-04-10 00:38:03 +08:00
Vicamo Yang
29e820636e
Bug 849739 3/4: IPC. r=bent
2013-04-10 00:37:58 +08:00
Vicamo Yang
8f528d829f
Bug 849739 2/4: DOM. r=mounir,mrbkap
2013-04-10 00:37:54 +08:00
Vicamo Yang
f35f3fbcde
Bug 849739 1/4 - WebSMS: Replace GetThreadList() with DOMCursor based GetThreads(). Interface changes. sr=mounir, r=bent
2013-04-10 00:37:50 +08:00
Vicamo Yang
9b46a05253
Bug 838467 5/5: test cases. r=gwagner
2013-04-10 00:36:12 +08:00
Vicamo Yang
8741aeb7a1
Bug 838467 4/5: RIL. r=gwagner
2013-04-10 00:36:08 +08:00
Vicamo Yang
ae16b38007
Bug 838467 3/5: IPC. r=sicking,bent
2013-04-10 00:36:04 +08:00
Vicamo Yang
743cb3a49f
Bug 838467 2/5: DOM implementation. r=sicking,bent
2013-04-10 00:35:59 +08:00
Vicamo Yang
6d192d0fb6
Bug 838467 1/5: use DOMCursor instead of SmsCursor. Interface changes. sr=sicking, r=bent
2013-04-10 00:35:55 +08:00
Boris Zbarsky
6580401152
Bug 857417. Trigger a fatal assertion when wrapping a wrappercached and nsISupports WebIDL object which has the wrapper cache before the nsISupports in its object layout. r=khuey
2013-04-08 17:04:21 -04:00
Andrea Marchesini
ac1813bcc2
Bug 851470 - Attr to WebIDL. r=Ms2ger
2013-04-09 17:29:47 +02:00
Andrea Marchesini
f2fd0928e5
Bug 851470 - Rename nsDOMAttribute to Attr. r=Ms2ger
...
--HG--
rename : content/base/src/nsDOMAttribute.cpp => content/base/src/Attr.cpp
rename : content/base/src/nsDOMAttribute.h => content/base/src/Attr.h
2013-04-09 17:29:44 +02:00
Kyle Machulis
993fd0dbcd
Bug 844705 - Add comment to mReadFileThread. r=mrbkap
2013-04-09 12:11:00 -04:00
Ehsan Akhgari
340cb86e25
Backed out changeset 92c2f24cb6ff (bug 854336) because of mochitest-1 crashes
2013-04-09 11:28:42 -04:00
Jeff Walden
3b503a25ed
Bug 856384 - Make outer windows always be [[Extensible]]. r=bholley, r=till
2013-04-09 09:07:05 -04:00
Chia-hung Tai
21aae31454
Bug 855605 - B2G MMS: Support auto-home in retrieve mode. r=vyang
2013-04-09 10:30:38 +08:00
vliu
0f05f3e929
Bug 855513 - WIFI is not re-enabed when internet sharing is getting stopped and WIFI was enabled before. r=vchang
2013-04-02 15:30:32 +08:00
Aryeh Gregor
b4f9d563cb
Bug 851916 part 2 - createHTMLDocument() should work with no arguments; r=bz
2013-03-21 14:55:08 +02:00
Aryeh Gregor
7208003963
Bug 851916 part 1 - Update dom/imptests/webapps/ and harness; r=Ms2ger
...
--HG--
rename : dom/imptests/webapps/DOMCore/tests/submissions/Ms2ger/test_ChildNode-remove.js => dom/imptests/webapps/DOMCore/tests/submissions/Ms2ger/ChildNode-remove.js
2013-03-21 14:54:43 +02:00
Julien Wajsberg
6bf2df1c9a
Bug 858833 - During an update, downloadAvailable is sometimes not reset to false after an error when it should. r=fabrice
2013-04-06 01:04:26 +02:00
Chia-hung Tai
e556deeb18
Bug 843445 - B2G MMS: Provide nsIDOMMobileMessageManager.retrieveMMS() to retrieve MMS for the deferred retrieval mode, part-2:mms_service. r=vyang, r=gene.lian, sr=sicking
2013-03-22 20:02:02 +08:00
Vicamo Yang
9a8e7ad028
Bug 850127 (follow-up): use JS::Value instead and fix possible fennec build bustage. r=me
2013-04-08 17:53:48 +08:00
Andrew McCreight
5600e1404e
Bug 856313 - Clean up some Traverse/Unlink declarations. r=smaug
2013-04-02 09:48:59 -07:00
Olli Pettay
054845d27c
Bug 858014, make sure nsPIDOMWindow can be used in external apps, like TB/SM, r=neil
...
--HG--
extra : rebase_source : 5c3bfc5bb175efba465be834974d26df34207568
2013-04-07 15:19:56 +03:00
Ms2ger
fb2089f6c9
Bug 859075 - Attempt to make the test more robust.
2013-04-07 13:59:18 +02:00
Masatoshi Kimura
2ca51c4f79
Bug 858224 - Remove most MSVC exemptions for FAIL_ON_WARNINGS. r=ted feedback=dholbert
2013-04-07 13:45:34 +09:00
Justin Lebar
95adf0041a
Bug 856006 - Attempt no. 3: Switch mozbrowserloadstart to mozbrowserloadend in the hopes that this will resolve an intermittent orange. r=me
2013-04-06 15:21:36 -04:00
Ryan VanderMeulen
9420af6638
Backed out changeset a85d21e394c0 (bug 854503) for bustage.
2013-04-06 14:37:33 -04:00
Jacek Szpot
ccadc1da47
Bug 854503 - Rename JS unwrapping functions. r=bholley
2013-04-04 12:14:32 +02:00
David Zbarsky
dd55a87c18
Bug 857884 - Use dom::EventTarget more in content/ and dom/ Part 2 r=Ms2ger
2013-04-05 20:44:26 -04:00
David Zbarsky
c2cf14c695
Bug 857884 - Use dom::EventTarget more in content/ and dom/ r=Ms2ger
2013-04-05 20:44:15 -04:00
Jason Duell
b650cd802e
Bug 855906 - SimplePush: Set pingInterval on websocket. r=dougt
2013-04-05 13:52:24 -07:00
Drew Willcoxon
92e3ede773
Bug 858192 - Correct error in nsIContentPrefService2 documentation about callbacks and observers. r=mak
2013-04-05 12:24:11 -07:00
Andrew McCreight
6570112733
Bug 852134 - simplify rooting and unrooting of SMS. r=smaug
2013-04-05 10:03:56 -07:00
Adam Roach [:abr]
d75f462ded
Bug 853858: Move PeerConnectionTest instance reference into global scope r=jesup,whimboo
2013-04-04 17:08:42 -05:00
Justin Lebar
3c5cb6ee2a
Bug 856006 - Attempt no. 2 to fix orange in browserElement_KeyEvents.js. r=kk1ff
...
It looks like we're sending events to the mozbrowser iframe before it's fully loaded.
2013-04-05 10:18:02 -04:00
Ryan VanderMeulen
b780a1351d
Backed out changeset fddde2d1e9b2 (bug 853858) for Windows leaks.
2013-04-05 09:03:22 -04:00
Chia-hung Tai
bb1adb758c
Bug 843445 - B2G MMS: provide nsIDOMMobileMessageManager.retrieveMMS() to retrieve MMS for the deferred retrieval mode, part-1:idl part. r=vyang, sr=sicking
2013-03-21 17:57:41 +08:00
Ryan VanderMeulen
78fef2951c
Backed out 13 changesets (bug 838467, bug 849739, bug 749086) for Marionette failures.
2013-04-09 08:54:00 -04:00
Paul Adenot
e76e15c30c
Bug 854336 - Implement the playbackRate property of AudioBufferSourceNode. r=ehsan
2013-04-09 14:47:42 +02:00
Yoshi Huang
98d3b4a090
Bug 859200 - Part 2 : update xpcshell tests. r=vicamo
2013-04-09 14:00:58 +08:00
Hiroyuki Ikezoe
fc811d80b9
Bug 859200 - Part 1: Get properties for RIL as boolean. r=allstars.chh
2013-04-08 19:20:48 +08:00
Randell Jesup
a6584c08ed
Backout changeset a54f620cf84c (bug 843445) for build failures
2013-04-09 03:55:21 -04:00
Chia-hung Tai
6855481581
Bug 843445 - B2G MMS: provide nsIDOMMobileMessageManager.retrieveMMS() to retrieve MMS for the deferred retrieval mode, part-1:idl part. r=vyang, sr=sicking
2013-03-21 17:57:41 +08:00
Nicholas Nethercote
1d0fa80c9d
Bug 848560 (part 3) - Add support to about:memory for writing memory report dumps and reading gzipped memory report dumps. code=nnethercote,maierman. r=jlebar.
...
--HG--
extra : rebase_source : b93b45d1f4c22a388eedff890c19dc1952c576de
2013-03-27 20:31:26 -07:00
Vicamo Yang
211c0ab4e0
Bug 850127 - 3/3: RIL & test cases. r=gwagner
2013-04-05 20:16:01 +08:00
Vicamo Yang
1ae50bfe49
Bug 850127 - 2/3: DOM & IPC. r=mounir
2013-04-05 20:15:52 +08:00
Vicamo Yang
08c7100393
Bug 850127 - 1/3: Expose threadId in SmsMessage and SmsThreadListItem. IDL/IPDL changes. sr=mounir
2013-04-05 20:15:44 +08:00
Ryan VanderMeulen
8a2621fb4d
Backed out changeset 8a6cacf047a1 (bug 833795)to fix bug 856083.
2013-04-05 07:55:25 -04:00
Adam Roach [:abr]
bc9b1d3ffd
Bug 853858: Move PeerConnectionTest instance reference into global scope. r=jesup, r=hskupin
2013-04-04 17:08:42 -05:00
David Zbarsky
76ad7e5429
Bug 856962: Move Touch to its own file r=Ms2ger
...
--HG--
rename : content/events/src/nsDOMTouchEvent.cpp => content/events/src/Touch.cpp
rename : content/events/src/nsDOMTouchEvent.h => content/events/src/Touch.h
2013-04-05 04:49:00 -04:00
Ms2ger
d73b4fb2c0
Revert to changeset 4c45dbd81a32 to fix mochitest-chrome orange.
2013-04-05 09:40:13 +02:00
Anthony Jones
9e329a687d
Backout 8a6cacf047a1 (bug 833795) to fix bug 856083
2013-04-05 18:19:08 +13:00
Eric Chou
1b53a5817c
Bug 851046: Patch 9 - Small misc fixes; r=mrbkap
2013-04-04 17:56:16 -07:00
Eric Chou
8e91688a6f
Bug 851046: Patch 8 - Add BluetoothSocket* as an argument of callback functions in BluetoothSocketObserver; r=mrbkap
2013-04-04 17:55:55 -07:00
Eric Chou
edadb6b84d
Bug 851046: Patch 7 - Remove function ListenSocketViaService(); r=mrbkap
2013-04-04 17:55:34 -07:00
Eric Chou
d82896d95e
Bug 851046: Patch 6 - Apply BluetoothSocket to BluetoothScoManager; r=mrbkap
2013-04-04 17:54:43 -07:00
Eric Chou
bf2f4be4a5
Bug 851046: Patch 5 - Apply BluetoothSocket to BluetoothHfpManager; r=mrbkap
2013-04-04 17:54:22 -07:00
Eric Chou
30bb590e64
Bug 851046: Patch 4 - Apply BluetoothSocket to BluetoothOppManager; r=mrbkap
2013-04-04 17:53:08 -07:00
Eric Chou
a0b0306990
Bug 851046: Patch 3 - Replace (Bluetooth*Managers)->CloseSocket() with (Bluetooth*Managers)->Disconnect(); r=mrbkap
2013-04-04 17:52:48 -07:00
Eric Chou
4d042d6bbd
Bug 851046: Patch 2 - New Class: BluetoothSocket; r=mrbkap
2013-04-04 17:52:12 -07:00
Eric Chou
dccf48bebb
Bug 851046: Patch 1 - New interface: BluetoothSocketObserver; r=mrbkap
2013-04-04 17:51:35 -07:00
Dale Harvey
4579139c8d
Bug 826058 - Hosted app install/update tests. r=fabrice, r=ted
2013-04-04 17:58:44 -07:00
Gregor Wagner
deccc07486
Bug 804623 - Permission Prompt Helper needs more access context to enable/disable permissions. r=sicking
2013-04-04 17:47:46 -07:00
Matt Brubeck
81b4a55b18
Back out bug 851046 because of rebase problems
2013-04-04 17:45:06 -07:00
Gregor Wagner
2ae5502758
Bug 858339 - PhoneNumberJS: Fix colombian phone numbers without the leading +. r=bent
2013-04-04 17:40:04 -07:00
Gregor Wagner
37faeec637
Bug 858330 - PhoneNumberJS: Fix chilean mobile numbers. r=bent
2013-04-04 17:39:57 -07:00
Eric Chou
a92a872e72
Bug 851046: Patch 9 - Small misc fixes; r=mrbkap
...
--HG--
extra : rebase_source : 12eb0cc3cdd6f8773ae9e503267dbf643f767cfc
2013-04-04 17:25:45 -07:00
Eric Chou
88a57f941c
Bug 851046: Patch 8 - Add BluetoothSocket* as an argument of callback functions in BluetoothSocketObserver; r=mrbkap
...
--HG--
extra : rebase_source : 0c3e6e78f59b83faf7c81892974505caa1b1723a
2013-04-04 17:25:44 -07:00
Eric Chou
aa759d45b9
Bug 851046: Patch 7 - Remove function ListenSocketViaService(); r=mrbkap
...
--HG--
extra : rebase_source : eb7d4a12566722c759c9badda579fe66ef689ff1
2013-04-04 17:25:44 -07:00
Eric Chou
7eed674e53
Bug 851046: Patch 6 - Apply BluetoothSocket to BluetoothScoManager; r=mrbkap
...
--HG--
extra : rebase_source : 1b005af7999f8136a2d503e708d255c5a8ed8eb9
2013-04-04 17:25:44 -07:00
Eric Chou
c841ea1f5b
Bug 851046: Patch 5 - Apply BluetoothSocket to BluetoothHfpManager; r=mrbkap
...
--HG--
extra : rebase_source : ec6e75948230e4b94d2d539833dc9899444d9afe
2013-04-04 17:25:44 -07:00
Eric Chou
7974514d04
Bug 851046: Patch 4 - Apply BluetoothSocket to BluetoothOppManager; r=mrbkap
...
--HG--
extra : rebase_source : 86f3d7acbfa097f92a2731d49ff5298ab4ad7a7c
2013-04-04 17:25:44 -07:00
Eric Chou
e200a451bc
Bug 851046: Patch 3 - Replace (Bluetooth*Managers)->CloseSocket() with (Bluetooth*Managers)->Disconnect(); r=mrbkap
...
--HG--
extra : rebase_source : 43524216294e08625619b5b1c6a35e0de9fadde6
2013-04-04 17:25:44 -07:00
Eric Chou
989000dc56
Bug 851046: Patch 2 - New Class: BluetoothSocket; r=mrbkap
...
--HG--
extra : rebase_source : 692fc69bc24a212621a5ff8a37fd17c237de9b20
2013-04-04 17:25:44 -07:00
Matt Brubeck
9a9b911119
Back out 8daa66c443a3 (bug 853858) because of Android and B2G test failures
2013-04-04 17:36:32 -07:00
Dave Hylands
51341af509
Bug 858034 - Make navigator.getDeviceStorage('') not crash when device storage is disabled. r=bent
2013-04-04 15:21:49 -07:00
Eitan Isaacson
5848b6c1b9
Bug 858136 - Rename nsIDOMSpeechSynthesisGetter as nsISpeechSynthesisGetter. r=smaug
...
--HG--
rename : dom/interfaces/base/nsIDOMSpeechSynthesisGetter.idl => dom/interfaces/base/nsISpeechSynthesisGetter.idl
2013-04-04 15:12:34 -07:00
Adam Roach [:abr]
d6dbee524b
Bug 853858: Move PeerConnectionTest instance reference into global scope r=jesup
2013-04-04 17:08:42 -05:00
Tanvi Vyas
d150b68f15
Bug 834836 - Disable mixed content blocking when running tests that rely on mixed active content loads to test security state. r=smaug
2013-04-04 14:52:52 -07:00
Boris Zbarsky
825d36de15
Bug 810644 part 2. Eliminate the now-unused CallEventHandler. r=smaug, sr=peterv
2013-01-03 14:02:42 -05:00
Boris Zbarsky
2f07f521a5
Bug 810644 part 1. Switch setTimeout and setInterval to using WebIDL callback functions. r=smaug, sr=peterv
2013-01-03 14:02:36 -05:00
Ryan VanderMeulen
b1544123e6
Backed out changeset 1e01b8a81990 (bug 858674) for Windows bustage on a CLOSED TREE.
2013-04-08 16:39:59 -04:00
Reuben Morais
b2f77af938
Bug 858837 - Clean Contacts/Permissions/Settings build config files. r=khuey r=gwagner
...
--HG--
extra : rebase_source : 15b1a3b477975a29c2ed36d288cf8e75fdfcbdc4
2013-04-05 16:12:31 -07:00
Ralph Giles
cb13c4576b
Bug 857022 - Remove MOZ_MEDIA build-time define. r=ted
...
We don't test with MOZ_MEDIA=0 so that configuration no longer
works. It's better to drop the switch altogether and enable
this code unconditionally. Per-codec and -feature configure
and runtime options remain available.
2013-04-04 14:09:00 -07:00
Ben Turner
29e5fb16d7
Bug 858674 - 'Tweak SQLite pragmas on mobile devices for space savings'. r=khuey.
2013-04-08 12:47:13 -07:00
Nikhil Marathe
64651d239f
Bug 851368 - Remove SimplePush registrations on app uninstall. r=dougt
...
--HG--
extra : rebase_source : 1af46c496c72ad81b5afe335593952e273a2ad8c
2013-04-04 13:42:35 -07:00
Chris Peterson
f0e70418f8
Bug 579517 - Remove some PRBools. r=ehsan
2013-04-04 10:28:18 -07:00
Ryan VanderMeulen
202bc754d9
Backed out changeset 4081996a7420 (bug 855276) for mochitest-other orange on a CLOSED TREE.
2013-04-04 12:35:35 -04:00
Ryan VanderMeulen
851b1209b8
Backed out changesets 715fce49a07b and abbc05319449 (bug 851916) for B2G mochitest-2 orange.
...
--HG--
rename : dom/imptests/webapps/DOMCore/tests/submissions/Ms2ger/ChildNode-remove.js => dom/imptests/webapps/DOMCore/tests/submissions/Ms2ger/test_ChildNode-remove.js
2013-04-04 12:02:50 -04:00
Nils Maier
07c9ba1608
Bug 857690 - Introduce xpc::ZoneStatsExtras and xpc::CompartmentStatsExtras. r=njn
2013-04-04 11:55:56 -04:00
Kyle Huey
1fa8376ffe
Bug 855276: Add assertions to catch the cause. r=bent
2013-04-04 08:09:16 -07:00
Scott Johnson
0ba930f4d9
Bug 520992: Adjust computed width and height before returning to account for box-sizing. [r=bz]
2013-04-04 09:00:07 -05:00
Nathan Froyd
be54fb01ea
Bug 857254 - add CGTemplatedType and use it everywhere; r=bz
2013-04-02 15:29:03 -04:00
Nathan Froyd
19220f547f
Bug 857254 - use CGIfWrapper more consistently; r=bz
2013-04-02 15:09:16 -04:00
Ms2ger
a1093b2662
Merge m-c to m-i.
2013-04-04 14:15:56 +02:00
Ms2ger
7a690c9add
Bug 851791 - Kill some script type id stuff; r=bz
2013-04-04 09:04:50 +02:00
Ms2ger
c50b78a918
Bug 856611 - Cleanup HTMLInputElement.webidl; r=bz
2013-04-04 09:04:45 +02:00
Ms2ger
564b34316f
Bug 856605 - Remove TimeRanges CI; r=mounir
2013-04-04 09:04:41 +02:00
Ms2ger
4f80fe5028
Bug 853818 - Remove HTMLMediaElement CI/nsIJSNativeInitializer; r=mounir
2013-04-04 09:04:29 +02:00
Ms2ger
bbaf1d2c08
Bug 854329 - Part b: Import more tests; rs=mounir
2013-04-04 09:04:24 +02:00
Ms2ger
cde860de66
Bug 854329 - Part a: Import more tests; rs=mounir
2013-04-04 09:04:00 +02:00
Ms2ger
2845200ab5
No bug - Correct reference to importTestSuites.py in comments in generated moz.build files.
2013-04-04 09:03:55 +02:00
Ms2ger
3ab3b93918
Bug 841488 - Part a: Rename nsHTMLSelectElement; r=khuey
...
--HG--
rename : content/html/content/src/nsHTMLSelectElement.cpp => content/html/content/src/HTMLSelectElement.cpp
rename : content/html/content/src/nsHTMLSelectElement.h => content/html/content/src/HTMLSelectElement.h
2013-04-04 09:03:33 +02:00
Ms2ger
f05c1ef0ee
Bug 854090 - Move nsHTMLFormElementSH::FindNamedItem to nsHTMLFormElement; r=khuey
2013-04-04 09:03:12 +02:00
Ms2ger
7112884ad3
Bug 575431 - Followup: remove obsoleted comment.
2013-04-04 09:02:16 +02:00
Ms2ger
11ec2b0f62
Bug 853814 - Make nsDocShell::mScriptGlobal an nsGlobalWindow; r=bz
2013-04-04 09:02:11 +02:00
Eitan Isaacson
7a556a1b24
Bug 525444 - (Part 3/3) Support OOP speech synth. r=smaug
...
--HG--
rename : content/media/webspeech/synth/moz.build => content/media/webspeech/synth/ipc/test/moz.build
2013-04-03 15:13:17 -07:00
Eitan Isaacson
2ed120291b
Bug 525444 - (Part 1/3) Basic SpeechSynthesis setup and voice registration. r=smaug
...
--HG--
rename : content/media/webspeech/moz.build => content/media/webspeech/synth/moz.build
rename : content/media/webspeech/moz.build => content/media/webspeech/synth/test/moz.build
2013-04-03 15:13:16 -07:00
Georg Fritzsche
efe3d3ff30
Bug 758872 - Fix missing null-check for plugin instance. r=bsmedberg
2013-04-04 00:00:45 +02:00
Aryeh Gregor
a7b2b75371
Bug 851916 part 2 - createHTMLDocument() should work with no arguments; r=bz
2013-03-21 14:55:08 +02:00
Aryeh Gregor
16ce916fd5
Bug 851916 part 1 - Update dom/imptests/webapps/ and harness; r=Ms2ger
...
--HG--
rename : dom/imptests/webapps/DOMCore/tests/submissions/Ms2ger/test_ChildNode-remove.js => dom/imptests/webapps/DOMCore/tests/submissions/Ms2ger/ChildNode-remove.js
2013-03-21 14:54:43 +02:00
Justin Lebar
4f0b7a659d
Bug 857653 - Fix leak in AudioChannelAgent by making it hold a weak ref to nsHTMLMediaElement. r=bz
2013-04-03 16:35:05 -04:00
Nikhil Marathe
61f3eee3cb
Bug 856273 - Filter SimplePush registrations() by app manifest URL. r=khuey
...
--HG--
extra : rebase_source : f01ab35375ff9d70e11d40a4426a8ef14f9166f1
2013-04-03 13:03:57 -07:00
Ryan VanderMeulen
96b06b3745
Backed out 9 changesets (bug 851046) for B2G bustage on a CLOSED TREE.
2013-04-03 15:54:36 -04:00
Eric Chou
fd3ed87d6c
Bug 851046 - Small misc fixes. r=mrbkap
...
1. Rename mSocketStatus
2. Remove keyword enum
3. Remove null-checking after new Bluetooth*Manager instances
2013-04-04 00:32:28 +08:00
Eric Chou
7a0dbd1170
Bug 851046 - Add BluetoothSocket* as an argument of callback functions in BluetoothSocketObserver. r=mrbkap
...
A Bluetooth*Manager may hold more than one BluetoothSocket at a time, therefore
we need to identify the caller (which socket calls the callback function).
2013-03-19 17:08:44 -07:00
Eric Chou
b98cd3e0f0
Bug 851046 - Remove function ListenSocketViaService(). r=mrbkap
...
Since we are now using BluetoothSocket directly for listening, this functions can be removed.
2013-03-19 13:53:43 -07:00
Eric Chou
44c9b0ab22
Bug 851046 - Apply BluetoothSocket to BluetoothScoManager. r=mrbkap
2013-03-19 09:48:30 -07:00
Eric Chou
35a54afb18
Bug 851046 - Apply BluetoothSocket to BluetoothHfpManager. r=mrbkap
2013-03-15 18:45:59 +08:00
Eric Chou
11a31e69bd
Bug 851046 - Apply BluetoothSocket to BluetoothOppManager. r=mrbkap
2013-03-15 17:47:35 +08:00
Eric Chou
d11f230c13
Bug 851046 - Use (Bluetooth*Managers)->Disconnect() instead of (Bluetooth*Managers)->CloseSocket() since managers are not UnixSocketConsumer anymore. r=mrbkap
2013-03-15 14:55:19 +08:00
Eric Chou
2ef6d8052f
Bug 851046 - New class: BluetoothSocket. r=mrbkap
...
After this new class is landed, communicating with other devices on
profile level should become more intuitive and reasonable. Each
Bluetooth*Manager doesn't need to inherit UnixSocketConsumer, instead,
BluetoothSocket inherits UnixSocketConsumer. That makes Bluetooth*Manager
be able to have more than 1 Bluetooth connections at a time with different
remote devices.
2013-02-26 11:16:36 +08:00
Eric Chou
a1daa49eb6
Bug 851046 - New interface: BluetoothSocketObserver. r=mrbkap
...
For those instances which want to be notified for any event sent
from a BluetoothSocket instance, they need to implement this
interface to get notification.
2013-02-26 10:34:54 +08:00
Nathan Froyd
f6e14570a7
Bug 839103 - part 3 - send StyleSheet{Added,Removed} chrome notifications when stylesheets are added/removed; r=bz
2013-03-27 14:16:50 -04:00
Andrea Marchesini
e05c4a4139
Bug 857549 - Remove nsIDOMDOMLocator.idl. r=Ms2ger
2013-04-03 11:58:31 -04:00
Ryan VanderMeulen
00049b734f
Merge m-c to inbound on a CLOSED TREE.
2013-04-03 11:50:19 -04:00
Jan de Mooij
b6b53ab331
Merge from mozilla-central.
2013-04-03 10:25:36 +02:00
Ehsan Akhgari
aa3139644f
Bug 579517 follow-up: Remove NSPR types that crept in
2013-04-02 20:59:27 -04:00
Jan de Mooij
535222fd17
Merge from mozilla-inbound.
2013-04-02 19:20:31 +02:00
Sankha Narayan Guria
6090516dc1
Bug 825608 - Sets accessTokenDate to the result of the pref; r=jdm
2013-04-02 04:04:00 -04:00
Aryeh Gregor
a0ee398aed
Bug 853449 - Dispatching an event that's already being dispatched should throw InvalidStateError; r=smaug
2013-04-02 17:10:45 +03:00
Jan de Mooij
119f5c8bc7
Merge from mozilla-central.
2013-04-01 21:48:56 +02:00
Nikhil Marathe
4dc28b5e65
Bug 856280 - Remove extra import services-common/utils.js. r=dougt
2013-04-01 10:37:51 -04:00
Ryan VanderMeulen
c4ac4ab91e
Merge m-c to inbound.
2013-04-01 09:50:07 -04:00
Robert Longson
424a479691
Bug 398825 - Implement selectSubString. r=heycam
...
--HG--
rename : content/svg/content/test/test_getSubStringLength.xhtml => content/svg/content/test/test_selectSubString.xhtml
rename : layout/reftests/svg/text/simple-selection.svg => layout/reftests/svg/text/selectSubString-2-ref.svg
rename : layout/reftests/svg/text/simple-selection.svg => layout/reftests/svg/text/selectSubString-2.svg
rename : layout/reftests/svg/text/simple-selection.svg => layout/reftests/svg/text/selectSubString-3-ref.svg
rename : layout/reftests/svg/text/simple-selection.svg => layout/reftests/svg/text/selectSubString-3.svg
rename : layout/reftests/svg/text/simple-selection.svg => layout/reftests/svg/text/selectSubString-ref.svg
rename : layout/reftests/svg/text/simple-selection.svg => layout/reftests/svg/text/selectSubString.svg
2013-04-01 10:43:38 +01:00
Hsin-Yi Tsai
e17d540bf3
Bug 856520 - B2G RIL: update RILContentHelper.rilContext.networkSelectionMode correctly. r=allstars.chh
2013-04-01 14:26:45 +08:00
Gene Lian
cf5be2242d
Bug 855968 - B2G MMS: delivery is not correctly indexed in DB. r=vicamo
2013-04-01 10:43:38 +08:00
Randell Jesup
f022c884a3
Bug 856434: Bug 837035 didn't create the TransportFlow for DataChannels. Passes the m-line index of the flow r=ehugg
2013-03-31 21:09:27 -04:00