Tetsuharu OHZEKI
1a1e61e1dd
Bug 970033 - Part 1: Unprefix CSS transform under /b2g. r=vingtetun
2014-02-13 09:27:43 -05:00
Jan Keromnes
4ed36649ec
Bug 968220 - Make B2G devtools overlay metrics configurable with prefs. r=vingtetun
2014-02-12 09:54:09 -05:00
Alexandre Poirot
18dbaa5cb4
Bug 961780 - Use "b2g" package name instead of "browser". r=fabrice
2014-02-11 09:24:20 -05:00
Carsten "Tomcat" Book
1fcb7ff9df
merge b2g-inbound to mozilla-central
2014-02-07 09:54:06 +01:00
Dimi Lee
56d196b3a5
Bug 959109 - B2G NFC: Disable NFC when screen is off. r=allstars.chh
2014-01-28 12:14:19 +08:00
Jan Keromnes
48a584a6b4
Bug 966210 - Make B2G devtools layers track all running apps on init. r=ochameau
2014-02-06 10:06:25 -05:00
Timothy Nikkel
389ddd215e
Bug 965593. Only use large z-index on root scroll frames to make overlay scrollbars draw above other content. r=roc
...
For non-root scroll frames this would lead to the scrollbars drawing above content outside the scroll frame and above everything in the scroll frame.
2014-02-06 16:46:21 -06:00
Kartikaya Gupta
f1e8c318f6
Bug 967502 - Handle the gaia developer setting to disable checkerboarding. r=vingtetun
2014-02-05 13:29:12 -05:00
Kartikaya Gupta
baa6673995
Bug 967098 - Set displayport heuristics based on Gaia settings. r=vingtetun
2014-02-03 18:58:08 -05:00
Fabrice Desré
d1a1885870
Bug 967233 - Override the scrollbarbutton background r=vingtetun
2014-02-03 15:51:02 -08:00
Vivien Nicolas
139ef1c589
Bug 967094 - Expose some prefs related to tiling. r=kats
2014-02-04 00:20:00 +01:00
Fabrice Desré
da7e46af81
Bug 966502 - Use Cu.cloneInto() instead of ObjectWrapper.jsm r=baku
2014-02-01 11:06:59 -08:00
Jan Keromnes
1e74db6b2b
Bug 960933 - Implement a DevTools Widget Panel for Firefox OS. r=ochameau
2014-01-31 13:01:58 -05:00
Nikhil Marathe
8e0026f21f
Bug 918806 - Remove all mention of dom.promise.enabled from other tests. r=bz,schien
...
--HG--
extra : rebase_source : a07485081313d6002459bd64e3abf4ebb10b960d
2014-01-30 13:14:03 -08:00
Ryan VanderMeulen
3a41ee3937
Backed out changesets 6db8b08a3aea and 1d7c2025bb56 (bug 918806) for B2G mochitest failures.
2014-01-30 14:46:36 -05:00
Nikhil Marathe
f6e4443816
Bug 918806 - Remove all mention of dom.promise.enabled from other tests. r=bz,schien
2014-01-30 09:43:09 -08:00
Jan Keromnes
8fc991b4cd
Bug 961392 - B2G RemoteDebugger.start() and toolkit DebuggerServer.addBrowserActors() duplicate code. r=ochameau, r=past
2014-01-24 12:11:00 +02:00
Ryan VanderMeulen
2163779703
Merge b2g-inbound to m-c.
2014-01-24 17:10:15 -05:00
Shih-Chiang Chien
1d39f86bae
Bug 947010 - Test case for recording status. r=fabrice
2013-12-16 13:45:01 +08:00
Fernando Jiménez
fd5011958d
Bug 938993 - Support Multi-SIM for Payments. r=fabrice
2014-01-24 11:08:43 +01:00
Ryan VanderMeulen
cd0015b979
Merge fx-team to m-c.
2014-01-23 15:56:13 -05:00
Vivien Nicolas
de0f1c860e
Bug 961047 - Ensure all mozbrowser iframes use APZ when APZ is enabled. r=kats,fabrice
2014-01-23 18:45:00 +01:00
Tim Taubert
7bfc5b8029
merge m-c to fx-team
2014-01-23 10:57:35 +01:00
Carsten "Tomcat" Book
9529a646f8
merge b2g-inbound to mozilla-central
2014-01-23 10:20:58 +01:00
Wes Kocher
a45e4bb415
Backed out changeset 47c7cd88eee1 (bug 961047) for b2g scrolling failures
2014-01-22 20:12:03 -08:00
Vivien Nicolas
f2c7bdc2e0
Bug 961047 - Ensure all mozbrowser iframes use APZ when APZ is enabled. r=kats,fabrice
2014-01-23 00:03:17 +01:00
Alexandre Poirot
ad99c8e604
Bug 961784 - Fix system app event listening in the mulet. r=fabrice
2014-01-22 14:06:46 -05:00
Panos Astithas
97a45e85f9
Make the debugger frontend cope with an already connected target (bug 933212); r=jryans,fitzgen
...
* Made the DebuggerClient, which is actually the RootActor front, not consider one of the attached child fronts as "active". Since a single DebuggerClient (or RootFront) is kept around for the App Manager's lifetime, it makes sense to move the notion of "active" tab to the toolbox's target. As each toolbox gets destroyed, the fronts should be detaching from their actors (if they are stateful) so that the app is no longer in a debugging state. Debugging a new app (or reconnecting to a previous one) will create new fronts anyway.
* Slightly refactored the TabClient, ThreadClient, SourceClient and TracerClient towards a protocol.js-based architecture, by adding parent-child references and lifecycle management. Now a tab-scoped thread actor for instance has the tab as its parent, while a global-scoped thread actor (chrome debugger) has the DebuggerCLient (RootFront) as its parent. This lets parents reference their children, so that caching in the target object can work. It also allowed me to move some methods from the DebuggerClient to the actual front that should be responsible, like reconfigureTab, reconfigureThread and attachThread. These methods now use DebuggerClient.requester, too.
* Added some error handling in the debugger client requester around "before" and "after" callbacks, which exposed some errors in tests that are now fixed.
* Fixed the state handling in the thread actor so that merely detaching from a thread doesn't put it in the exited state. This is the part that what was necessary for Firebug's use case.
* Properly loading tracer and webgl actors now on b2g.
2014-01-14 17:39:40 +02:00
Panos Astithas
2c406aadac
Add a memory actor for collecting memory usage data (bug 923275); r=paul
2013-12-03 13:41:02 +02:00
Alexandre Poirot
4f60ea3b19
Bug 961655 - Ensure that webapps-registry-ready event is fired, even if the Webapps registry is initialized before shell.html is loaded. r=fabrice
2014-01-22 10:06:29 -08:00
Marco Castelluccio
a05143f25c
Bug 959420 - Refactor saveApps, getManifestFor, readManifests, writeFile functions to use promises. r=fabrice
2014-01-16 16:26:24 -08:00
Ryan VanderMeulen
b05202b7e2
Merge inbound to m-c.
2014-01-16 15:06:12 -05:00
Etienne Segonzac
f091204480
Bug 849223 - Make the CSS3 system color module customizable via mozSettings to enable gaia themes. r=vingtetun
2014-01-16 15:52:30 +01:00
Diego Wilson
ce8176de16
Bug 947504 - Only enable HwcComposer2D by default if hardware supports it. r=gal
...
This feature will only be enabled by default on hardware that supports it
which sets the gonk prop "ro.display.colorfill" to true.
The feature can still be force enabled (or force disabled) via the
"layers.composer2d.enabled" setting.
2014-01-14 14:44:47 -08:00
Alexandre Poirot
291e390c9f
Bug 891882 - Activate touch events on b2g desktop. r=vingtetun, r=mdas
2014-01-15 09:28:04 -05:00
Fabrice Desré
a4e719a4de
Bug 957880 - Expose memory pressure events to gaia's system app r=gwagner
2014-01-14 21:32:19 -08:00
Alexandre Poirot
1c86fd4f12
Bug 959111 - Disable actors in parent process unless certified app pref is toggled. r=past
2014-01-14 10:14:24 -05:00
Ryan VanderMeulen
4d0972315d
Merge inbound to m-c.
2014-01-13 17:44:24 -05:00
Alexandre Poirot
1ada9ff931
Bug 952214 - Re-enable webapps actor mochitest on b2g desktop and cover shell.js debugger server initialization. r=paul
2014-01-13 08:44:47 -05:00
Peter Chang
4c5cb7d5d9
Bug 946596 - Support high resolution screenshots, r=timdream,dflanagan
2014-01-13 10:24:36 +08:00
Alexandre Lissy
de8ff304a0
Bug 951150 - Sync notification system message with Notification API. r=mhenretty
2014-01-09 16:55:44 +01:00
Fernando Jiménez
26713bb956
Bug 926737 - FOTA update includes device GUID for identification purpose. Part 1: B2G. r=fabrice
2014-01-10 11:02:58 +01:00
Fabrice Desré
e250fa7587
Bug 956185 - Add a 'adb only' debugging option r=dhylands
2014-01-08 17:18:03 -08:00
Patrick Wang (Chih-Kai Wang)
9989d89cb7
Bug 913243 - Load ErrorPage.js only when error occurs. r=fabrice
2014-01-07 14:39:32 +08:00
Honza Bambas
4fc7ebc647
Bug 918880 - MaybeAllowOfflineAppByDefault must work on child processes, r=jduell
2013-11-19 23:15:59 +01:00
Wes Kocher
e7ac45f0cd
Revert the backout of bug 938023 (changesets 19fbd3fb0373:8146150d4df8)
2013-12-20 13:43:46 -08:00
Diego Wilson
c2ae3452cf
Bug 950800 - Honor Composer2D toggling on the fly. r=nrc
...
Now you can toggle the hardware composer on/off at any point without restarting B2G.
2013-12-17 09:01:39 -08:00
Ms2ger
4f9286e563
Merge backout.
2013-12-20 11:39:00 +01:00
Ms2ger
aae32a4ae5
Backout bug 938023 (changesets 19fbd3fb0373:8146150d4df8) for missing review.
2013-12-20 11:37:27 +01:00
Wes Kocher
f8ab24ed0d
Merge fx-team to m-c
2013-12-19 19:09:04 -08:00
Fernando Jiménez
c2c57edfba
Bug 947860 - Expose data SIM information instead of first SIM in the WebPaymentProvider API. r=fabrice
2013-12-19 13:42:22 +01:00
Michael Ratcliffe
cb71ab3030
Bug 864098 - Add "Disable Cache" to options panel r=jwalker
...
--HG--
rename : browser/devtools/framework/test/browser_toolbox_options_disablejs.html => browser/devtools/framework/test/browser_toolbox_options_disable_js.html
rename : browser/devtools/framework/test/browser_toolbox_options_disablejs.js => browser/devtools/framework/test/browser_toolbox_options_disable_js.js
rename : browser/devtools/framework/test/browser_toolbox_options_disablejs_iframe.html => browser/devtools/framework/test/browser_toolbox_options_disable_js_iframe.html
2013-12-18 09:34:49 +00:00
Ryan VanderMeulen
01e5988548
Merge m-c to inbound.
2013-12-17 16:20:31 -05:00
Alexandre Poirot
00f7f20de6
Bug 926014 - Fix styleeditor actor on b2g. r=paul
2013-12-17 11:14:19 -05:00
Carsten "Tomcat" Book
d1cebfc090
Backed out changeset 812c5f165aca (bug 864098) for XPC Bustage on a CLOSED TREE
...
--HG--
rename : browser/devtools/framework/test/browser_toolbox_options_disable_js.html => browser/devtools/framework/test/browser_toolbox_options_disablejs.html
rename : browser/devtools/framework/test/browser_toolbox_options_disable_js.js => browser/devtools/framework/test/browser_toolbox_options_disablejs.js
rename : browser/devtools/framework/test/browser_toolbox_options_disable_js_iframe.html => browser/devtools/framework/test/browser_toolbox_options_disablejs_iframe.html
2013-12-17 13:58:55 +01:00
Michael Ratcliffe
975eb6e7c7
Bug 864098 - Add "Disable Cache" to options panel r=jwalker
...
--HG--
rename : browser/devtools/framework/test/browser_toolbox_options_disablejs.html => browser/devtools/framework/test/browser_toolbox_options_disable_js.html
rename : browser/devtools/framework/test/browser_toolbox_options_disablejs.js => browser/devtools/framework/test/browser_toolbox_options_disable_js.js
rename : browser/devtools/framework/test/browser_toolbox_options_disablejs_iframe.html => browser/devtools/framework/test/browser_toolbox_options_disable_js_iframe.html
2013-12-17 10:58:21 +00:00
Dave Hylands
1f902a595b
Bug 915974 - Make adb stay on if USB functions are being used. r=fabrice
2013-12-14 11:44:57 -08:00
Fabrice Desré
fd582ffeda
Bug 949191 - [B2G][Browser] unknown cert issuer error message text overlaps the border and the text's letters are too small to read it r=gwagner
2013-12-13 10:38:38 -08:00
Fernando Jiménez
9048e2f77b
Bug 949526 - FxAccountsManager and B2G implementation. Part 3: FxA B2G Service. r=fabrice
2013-12-13 12:25:26 +01:00
Fabrice Desré
619c5db6bd
Bug 938023 - Implement the download API : Part 2, implementation. r=auswerk
2013-11-27 23:18:08 -08:00
Gregory Szorc
158ed8b3ec
Bug 774572 - Part 2: Define JAR_MANIFESTS in moz.build files; r=glandium
...
Every directory with a jar.mn now has JAR_MANIFESTS defined in its
moz.build file.
We also removed the may_skip special consideration of jar.mn files
because this information is now available during tier traversal by the
reader courtesy of the variables being present in moz.build files.
--HG--
extra : rebase_source : 21049b15e6bd9cf65b0805ccaccc4ba5aae93c98
extra : amend_source : 0b1ea866d725beef92d37c6f6d475369ac002e19
2013-12-10 16:18:11 +09:00
Fabrice Desré
945828ab66
Bug 948276 - Lazy load accessfu.jsm r=MarcoZ
2013-12-10 11:49:10 -08:00
Jonathan Watt
b9c0b3f28e
Bug 947718 - Work around bug 946184 for Aurora. r=bz
2013-12-08 21:27:28 +00:00
Heather Arthur
d8ea087d7d
Bug 949556 - Add Firefox 26-28 backwards compatibility to Style Editor. r=paul
2013-12-19 11:32:12 -05:00
Ryan VanderMeulen
b2f54fc850
Merge b2g-inbound to m-c.
2013-12-05 17:53:41 -05:00
Ryan VanderMeulen
ba9861a512
Bug 940045 - s/foreach/forEach.
2013-12-05 12:08:26 -05:00
Jared Wein
78680ed96d
Bug 649490 - Switch the volume slider on the media controls to be horizontal and always visible. r=Gijs
...
--HG--
extra : rebase_source : 90a0865e71b87dbaddf44c4805f78f709e5d80de
2013-11-27 10:31:39 -05:00
Shih-Chiang Chien
c550a62a7b
Bug 940045 - Part 4: Support multiple requestURL in one process. r=vingtetun
2013-11-26 14:22:23 +08:00
Carsten "Tomcat" Book
45d2ff3464
Merge m-c to b2g-inbound
2013-11-28 14:48:55 +01:00
Mike Hommey
9245936f8b
Bug 874266 - Move all DEFINES that can be moved to moz.build. r=mshal
2013-11-27 22:55:07 +09:00
Mike Hommey
2b828323f2
Backout changeset 3fd4b546eed4 (bug 874266) and changeset a35d2e3a872f (bug 942043) for ASAN build bustage and Windows test bustage
...
--HG--
extra : amend_source : f20d09aeff1c8b5cbd0f1d24c7ce04e86f3aed1d
2013-11-28 14:24:05 +09:00
Mike Hommey
d210f8ff00
Bug 874266 - Move all DEFINES that can be moved to moz.build. r=mshal
2013-11-28 13:08:16 +09:00
Jonathan Watt
0cbbb98ce1
Bug 635240 - Implementation of the layout and anonymous shadow tree portion of <input type=number>. r=dholbert
2013-09-04 11:30:36 +01:00
Yoshi Huang
ce4f36870a
Bug 936471 - Payments fail on Inari 1.3 with TypeError: iccProvider.iccInfo is undefined. r=fabrice
2013-11-15 12:21:32 +08:00
Yuan Xulei
3a57066c1c
Bug 932151 - Include forms.js in both desktop and b2g build. r=fabrice
...
--HG--
rename : b2g/chrome/content/forms.js => dom/inputmethod/forms.js
2013-11-11 09:11:43 -05:00
Ed Morley
504e6b6efb
Backed out changeset f2ed6b24269a (bug 932151) for causing bug 936324
...
--HG--
rename : dom/inputmethod/forms.js => b2g/chrome/content/forms.js
2013-11-08 10:59:31 +00:00
Yuan Xulei
08571f6def
Bug 932151 - Include forms.js in both desktop and b2g build. r=fabrice
...
--HG--
rename : b2g/chrome/content/forms.js => dom/inputmethod/forms.js
2013-11-07 09:02:25 -05:00
Ed Morley
a177bd0e92
Backed out changeset 8233d40249e0 (bug 891882) since it needs to fix/disable gaia tests before landing
2013-11-07 09:27:04 +00:00
Fabrice Desré
8455ac68d9
Bug 891882 - Enable touch event on B2G desktop r=vingtetun
2013-11-06 11:05:07 -08:00
Wes Kocher
a09c0d488d
Backed out changeset 3b0468c92157 (bug 891882) for breaking a test in gaia-ui-test
2013-11-06 14:45:57 -08:00
Fabrice Desré
f4c330982f
Bug 891882 - Enable touch event on B2G desktop r=vingtetun
2013-11-06 11:05:07 -08:00
Kan-Ru Chen (陳侃如)
6fc061037b
Backout 87b5e35236ef (bug 931746) breaks UI tests
2013-11-05 15:04:22 +08:00
Kan-Ru Chen (陳侃如)
05717c43a5
Bug 931746 - Only handle events from our direct descendants. r=yxl
2013-11-05 12:24:40 +08:00
Ed Morley
a4072422f1
Merge mozilla-central and fx-team
2013-11-01 13:19:18 +00:00
Fabrice Desré
c418e8c7ce
Bug 914843 - fix b2g DirectoryProvider on desktop r=gwagner
2013-10-31 23:35:58 -07:00
Alexandre Poirot
1cae1800d6
Bug 933380 - Fix exception on app close request. r=fabrice
2013-10-31 22:52:39 -04:00
Chia-hung Tai
ba49087806
Bug 921917 - B2G MMS: Provide a flag to let user be able to request read report or not when sending MMS. r=gene
2013-10-30 11:48:47 +08:00
Yuan Xulei
dce5610a0e
Bug 914100 - Keep the focused element of forms.js up to date. r=fabrice
2013-10-30 15:21:02 -04:00
Vicamo Yang
3eb62fc290
Bug 920551 - 2.h/2: fix dom/system/gonk/*. r=hsinyi,khuey
2013-10-29 16:12:45 +08:00
Shih-Chiang Chien
758630d970
Bug 926289 - Part 4, Separate recording status for each process. r=vingtetun,jesup.
2013-10-25 20:04:57 -04:00
Alive Kuo
224aa35c6c
Bug 927310 - dispatch activitydone event from mozbrowser iframe
2013-10-21 19:16:00 +01:00
Vicamo Yang
d5accb0c72
Bug 926302 - 2.b/3: implementation. r=gene,hsinyi,khuey
2013-10-24 16:15:06 +08:00
Michael Henretty
6ee42939de
Bug 899574 - Part 2, add Notification.get() with notification storage. r=bent
...
--HG--
rename : dom/tests/mochitest/notification/create_notification.html => dom/tests/mochitest/notification/desktop-notification/create_notification.html
rename : dom/tests/mochitest/notification/notification_common.js => dom/tests/mochitest/notification/desktop-notification/notification_common.js
rename : dom/tests/mochitest/notification/test_basic_notification.html => dom/tests/mochitest/notification/desktop-notification/test_basic_notification.html
rename : dom/tests/mochitest/notification/test_basic_notification_click.html => dom/tests/mochitest/notification/desktop-notification/test_basic_notification_click.html
rename : dom/tests/mochitest/notification/test_leak_windowClose.html => dom/tests/mochitest/notification/desktop-notification/test_leak_windowClose.html
rename : dom/tests/mochitest/notification/test_notification_tag.html => dom/tests/mochitest/notification/desktop-notification/test_notification_tag.html
rename : dom/tests/mochitest/notification/test_system_principal.xul => dom/tests/mochitest/notification/desktop-notification/test_system_principal.xul
2013-10-02 18:27:53 -07:00
Shih-Chiang Chien
7c93bf84e3
Bug 919149 - Maintain child process lifecycle for recording status. r=jesup, r=khuey, r=vingtetun
2013-09-30 20:09:55 +08:00
Fabrice Desré
54f57341b4
Bug 924032 - Followup to close the loop r=me
2013-10-15 09:36:24 -07:00
Fabrice Desré
ee8e0bd00f
Bug 924032 - ~40ms delay from app.launch to mozChromeEvent r=vingtetun
2013-10-14 08:59:28 -07:00
Kyle Machulis
dadcdcd844
Bug 915002: Convert optional notification arguments to webidl dictionary, add directional/lang arguments; r=bz r=fabrice
2013-10-11 11:12:13 -07:00
Wes Kocher
14c257b243
Backed out changeset cb1fdb7df155 (bug 915002) again for build bustage
2013-10-10 15:27:12 -07:00
Kyle Machulis
e8a28d2f3a
Bug 915002: Convert optional notification arguments to webidl dictionary, add directional/lang arguments; r=bz r=fabrice
2013-10-10 15:02:45 -07:00
Kyle Machulis
5854a47e33
BACKOUT of 64c2b25224fa (Bug 915002) due to burnage
2013-10-10 14:36:37 -07:00
Kyle Machulis
4a9d62943f
Bug 915002: Convert optional notification arguments to webidl dictionary, add directional/lang arguments; r=bz r=fabrice
2013-10-10 14:04:32 -07:00
Kyle Machulis
b176ccb46b
Backing out aa94c4753dcc (Bug 915002) due to WinXP breakage
2013-10-09 19:18:23 -07:00
Kyle Machulis
5ed0d32a3e
Bug 915002: Convert optional notification arguments to webidl dictionary, add directional/lang arguments; r=bz r=fabrice
...
--HG--
extra : rebase_source : 7052d11cbc5508efa7c3ae5cabe978ee62063933
2013-10-09 17:06:29 -07:00
Reuben Morais
6d37cb18c3
Backed out 2 changesets (bug 899574) for breaking Gaia tests
...
--HG--
rename : dom/tests/mochitest/notification/desktop-notification/create_notification.html => dom/tests/mochitest/notification/create_notification.html
rename : dom/tests/mochitest/notification/desktop-notification/notification_common.js => dom/tests/mochitest/notification/notification_common.js
rename : dom/tests/mochitest/notification/desktop-notification/test_basic_notification.html => dom/tests/mochitest/notification/test_basic_notification.html
rename : dom/tests/mochitest/notification/desktop-notification/test_basic_notification_click.html => dom/tests/mochitest/notification/test_basic_notification_click.html
rename : dom/tests/mochitest/notification/desktop-notification/test_leak_windowClose.html => dom/tests/mochitest/notification/test_leak_windowClose.html
rename : dom/tests/mochitest/notification/desktop-notification/test_notification_tag.html => dom/tests/mochitest/notification/test_notification_tag.html
rename : dom/tests/mochitest/notification/desktop-notification/test_system_principal.xul => dom/tests/mochitest/notification/test_system_principal.xul
2013-10-07 14:41:13 -04:00
Michael Henretty
f5b19a2f64
Bug 899574 - Part 2, add Notification.get() with notification storage. r=bent
...
--HG--
rename : dom/tests/mochitest/notification/create_notification.html => dom/tests/mochitest/notification/desktop-notification/create_notification.html
rename : dom/tests/mochitest/notification/notification_common.js => dom/tests/mochitest/notification/desktop-notification/notification_common.js
rename : dom/tests/mochitest/notification/test_basic_notification.html => dom/tests/mochitest/notification/desktop-notification/test_basic_notification.html
rename : dom/tests/mochitest/notification/test_basic_notification_click.html => dom/tests/mochitest/notification/desktop-notification/test_basic_notification_click.html
rename : dom/tests/mochitest/notification/test_leak_windowClose.html => dom/tests/mochitest/notification/desktop-notification/test_leak_windowClose.html
rename : dom/tests/mochitest/notification/test_notification_tag.html => dom/tests/mochitest/notification/desktop-notification/test_notification_tag.html
rename : dom/tests/mochitest/notification/test_system_principal.xul => dom/tests/mochitest/notification/desktop-notification/test_system_principal.xul
2013-10-02 18:27:53 -07:00
Andrea Marchesini
5204b29e90
Bug 871445 - patch 5 - DataStore: onchange, r=ehsan, r=bent
2013-10-02 13:27:15 -04:00
Ed Morley
c2b9dd6918
Backed out changeset 325f389cb437 (bug 871445)
2013-10-02 17:57:40 +01:00
Andrea Marchesini
7bcfef65ac
Bug 871445 - patch 5 - DataStore: onchange, r=ehsan, r=bent
2013-10-02 11:30:26 -04:00
Martijn Wargers
f23ceb8fe9
Bug 915437 - "System JS : ERROR chrome://browser/content/forms.js:942 TypeError: Argument 1 of Range.setEnd is not an object." on all B2G mochitest-9 runs. r=yxl
2013-09-30 13:53:40 +02:00
Fabrice Desré
6102047988
Bug 882186 - [System] Replace blue offline error page with new UX r=vingtetun,bz
2013-09-24 14:21:10 -07:00
Fabrice Desré
acedadd2e8
Bug 915626 - Add a way to restart gecko into a clean state r=vingtetun
2013-09-18 10:42:06 -07:00
Ryan VanderMeulen
d1320d9844
Merge m-c to fx-team on a CLOSED TREE.
2013-09-17 20:27:03 -04:00
Alexandre Poirot
ebb7ba6c97
Bug 917331 - Fix exception on b2g desktop about undefined AdbController object. r=fabrice
2013-09-17 14:29:38 -04:00
Jan Jongboom
bb7171d163
Bug 916740 - Expose Keyboard.jsm to shell.js. r=kchen
2013-09-17 11:11:57 -04:00
Alexandre Poirot
5a0cad80b0
Bug 916237 - Enable inspector actor in b2g parent process r=paul
2013-09-16 09:30:00 +02:00
Carmen Jimenez
b4294000c9
Bug 893800 - Install single variant apps the first time a SIM is detected. r=fabrice
2013-07-31 21:34:19 +02:00
Fabrice Desré
8a9a977767
Bug 915260 - "TypeError: Services.settings is undefined" error in B2G mochitest logs r=etienne
2013-09-12 01:57:15 -07:00
Ryan VanderMeulen
c22b2b3980
Merge m-c to b2g-inbound.
2013-09-12 20:41:54 -04:00
Masayuki Nakano
4ebb8b56c6
Bug 911951 part.3 Reimplement CompositionManager.setComposition() and CompositionManager.endComposition() r=yxl
2013-09-13 00:19:00 +09:00
Jan Jongboom
691da12877
Bug 912951 - Implement supportsSwitching in inputMethod based on content events from gaia. r=yxl
2013-09-12 13:02:36 -04:00
Marco Chen
f10f8408c6
Bug 855655 - [AudioChannelManager] Add New Attribute for Setting Default Control Volume Channel. r=baku
2013-09-12 20:26:03 +08:00
Ed Morley
85707b85b5
Backed out changeset 622c510957bb (bug 915260) in the hope that it is responsible for the B2G mochitest-7 failure, rather than the external repo changes CLOSED TREE
2013-09-12 14:09:02 +01:00
Fabrice Desré
48c8cc5df3
Bug 915260 - "TypeError: Services.settings is undefined" error in B2G mochitest logs r=etienne
2013-09-12 01:57:15 -07:00
Fabrice Desré
30f8625230
Bug 912612 - Add a timer dedicated to apps update when system updates are disabled. r=etienne,vingtetun
2013-09-11 05:00:48 -07:00
Alexandre Poirot
63916663dd
Bug 832000 - Use unix domain socket file for devtools remote connection. r=jimb, r=vingtetun
2013-09-10 12:52:33 -04:00
Kyle Machulis
c58b1a4891
Bug 910915 - Add capabilities for new notifications to B2G shell/alertservice; r=fabrice
2013-09-10 16:49:42 +02:00
Gregor Wagner
cc7d531e83
Bug 913267 - Don't use settingsService in settings.js. r=timdream
2013-09-09 12:28:01 +02:00
Fabrice Desré
9d38f640c4
Bug 912898 - B2G: Don't kill adb (or lock the screen) if a debugger client is connected r=past
2013-09-07 16:28:51 -07:00
Fabrice Desré
595ce186af
Bug 894927 - Use xhtml instead of xul for b2g main window. r=ochameau
...
--HG--
rename : b2g/chrome/content/shell.xul => b2g/chrome/content/shell.html
2013-08-28 14:35:34 -07:00
Fernando Jiménez
65497c7a5a
Bug 818317 - Expose debug messages in navigator.mozPay() for debug enabled profiles. r=fabrice
2013-09-06 18:43:54 +02:00
supadennis.lee
df0f224def
Bug 900595 - Once always send a report has been selected, selecting any other option is ignored with system crashes r=fabrice
2013-09-05 18:41:31 -07:00
Fabrice Desré
26700bcd95
Backout bug 798353 for... not actually working properly
2013-09-05 13:18:28 -07:00
Yuan Xulei
55f3f41a8e
Bug 902847 - Don't trim spaces before newline for contentEditable. r=hsivonen
2013-09-05 16:10:04 -04:00
Ed Morley
3dfc516118
Merge mozilla-central and b2g-inbound
2013-09-05 14:53:25 +01:00
Yuan Xulei
a7cd7d09a1
Bug 904530 - endComposition should commit text before cursor. r=masayuki
2013-09-05 08:20:25 -04:00
Wes Kocher
8bba56d03f
Merge m-c to inbound
2013-09-04 18:04:50 -07:00
Mike Hommey
f1cf3b4238
Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps
2013-09-05 09:01:46 +09:00
Ryan VanderMeulen
f41dc068e8
Backed out changeset 5c25126b9c76 (bug 894927) for causing bug 911751 on a CLOSED TREE.
...
--HG--
rename : b2g/chrome/content/shell.html => b2g/chrome/content/shell.xul
2013-09-03 20:51:30 -04:00
Pin Zhang
8397e0b9ea
Bug 870676: Part 1 - Implement mozFMRadio in WebIDL, r=khuey,baku
2013-09-03 15:26:33 -07:00
Alive Kuo
9ce2d5c452
Bug 900838 - Add system first paint event. r=fabrice
2013-09-03 08:50:43 -04:00
Fabrice Desré
1f550ef05a
Bug 910761 - "System JS : ERROR chrome://browser/content/forms.js:335 TypeError: target.contentDocument is null" on all B2G mochitest-3 runs r=yxl
2013-09-02 18:56:14 -07:00
Tim Chien
ee401f6d7e
Bug 911041 - Map DNT 3 state setting from settings db to Gecko pref. r=fabrice
2013-08-31 10:15:57 -04:00
Yuan Xulei
23f492b3c3
Bug 904530 - Implement composition methods for InputContext API. r=fabrice, r=masayuki
2013-08-30 08:07:16 -04:00
Tim Chien
705ba95de4
Bug 798353 - Make SettingsListener reuse the lock. r=fabrice
2013-09-04 08:28:28 -04:00
Jan Jongboom
cea8aa6feb
Bug 811177 - Keyboard should also work for designMode=on. r=yxl
2013-08-29 09:57:12 -04:00
Ed Morley
ff17bffde0
Merge mozilla-central and b2g-inbound
2013-08-29 10:50:31 +01:00
Ed Morley
51afc03d5c
Backed out changeset cd99d10fc665 (bug 870676) for breaking B2G device image builds on a CLOSED TREE
2013-08-29 10:43:09 +01:00
Ryan VanderMeulen
7ed6f218ff
Merge m-c to b2g-inbound.
2013-08-29 00:24:45 -04:00
Ryan VanderMeulen
b30d3856ea
Merge b2g-inbound to m-c.
2013-08-28 22:48:03 -04:00
Rudy Lu
beebdf86b9
Bug 909124 - [b2g desktop] shell.js did not get correct mozbrowserloadstart event to send Gaia the pending chromeEvents. r=fabrice
...
CLOSED TREE
2013-08-28 07:58:27 -04:00
Pin Zhang
39055cc1a0
Bug 870676: Part 1 - Implement mozFMRadio in WebIDL. r=khuey,baku
2013-08-28 10:24:23 -07:00
Kyle Huey
68c202cebc
Back out my failed attempt to land bug 870676.
2013-08-28 10:23:32 -07:00
Kyle Huey
0ebcb654ef
Bug 870676: Part 1 - Implement mozFMRadio in WebIDL. r=khuey,baku
2013-08-28 10:11:53 -07:00
Kyle Huey
462f24c69f
Back out my failed attempt to land bug 870676.
2013-08-28 10:10:39 -07:00
Kyle Huey
21373abc55
Bug 870676: Part 1 - Implement mozFMRadio in WebIDL. r=khuey,baku
2013-08-28 09:44:33 -07:00
Jan Jongboom
f4efa8765d
Bug 902942 - Deletion observer checks against wrong variable. r=yxl
2013-08-28 11:55:57 -04:00
Ed Morley
f7ebe1540f
Backed out changeset 294fde226b78 (bug 909124) for breaking gaia-ui-test
2013-08-28 16:27:01 +01:00
Ed Morley
9bd0dc784d
Merge mozilla-central and b2g-inbound
2013-08-28 16:23:08 +01:00
Rudy Lu
14052fb874
Bug 909124 - [b2g desktop] shell.js did not get correct mozbrowserloadstart event to send Gaia the pending chromeEvents. r=fabrice
2013-08-28 07:58:27 -04:00
Brandon Benvie
d541457dea
Bug 909782 - TabLists inheriting from BrowserTabList need to be updated to change "iterator" to "getList". r=mbrubeck, r=mleibovic
2013-08-28 10:57:59 +02:00
Fabrice Desré
86a5ba6cdd
Bug 909640 - Fix js warnings in shell.js r=gwagner
2013-08-27 15:11:16 -07:00
Alexandre Poirot
8559a4efe9
Bug 909273 - listTabs throws an exception on b2g device. r=past
...
Actually, this code also throw on desktop.
I'm not sure it is worth trying to expose any tabs on b2g,
as we are not really ready to expose them and we need
substantial work to expose tabs in browser app.
2013-08-26 13:57:16 -04:00
Marco Castelluccio
e3ee8b933a
Bug 909573 - getManifestFor should accept a manifest url instead of an origin. r=fabrice
2013-08-28 08:10:55 -04:00
Alexandre Lissy
2c52d7f3fb
Bug 871916 - Add empty event listener for devicemotion for devices depending on this. r=fabrice
2013-08-03 12:50:18 +02:00
Fabrice Desré
e4df86208c
Bug 894927 - Use xhtml instead of xul for b2g main window. r=ochameau
...
--HG--
rename : b2g/chrome/content/shell.xul => b2g/chrome/content/shell.html
2013-08-28 14:35:34 -07:00
Jan Jongboom
278f8923f7
Bug 902847 - ContentEditable insertText doesnt handle CR right. r=yxl
2013-08-22 09:53:47 -04:00
Jan Jongboom
f3389b3292
Bug 902942 - Deleting focused element doesn't update forms.js focusedElement. r=yxl
2013-08-21 08:24:25 -04:00
Paul Rouget
fab0d93f50
Bug 895360 - [app manager] Device meta data actor. r=poirot.alex
2013-08-21 08:56:40 +02:00
Dave Hylands
fb6709f133
Bug 874484 - Disable ADB after a timeout. r=fabrice
...
This patch causes ADB to be disabled after 12 hours. The timeout is only used
when marionette is disabled, which implies production builds. Engineering
builds (VARIANT=eng or VARIANT=userdebug) will continue to have ADB enabled
indefinitely.
2013-08-16 12:07:05 -07:00
Dave Hylands
8b76e9de95
Bug 810092 - On a production phone (i.e. VARIANT=user) only enable adb when the phone is unlocked. r=fabrice
2013-08-16 12:06:49 -07:00
Doug Turner
a884f963e9
Bug 904462 - Clean up warnings and errors when starting B2G on the mac r=fabrice
2013-08-16 11:08:03 -07:00
Yuan Xulei
0b397dc3fa
Bug 904628 - Ensure focused element is not null when calling FormAssistant.updateSelection(). r=fabrice
2013-08-15 12:59:28 -04:00
Yuan Xulei
cdd3131bdc
Bug 904628 - Make the code dealing with contentEditable in forms.js more robust. r=fabrice
2013-08-14 13:54:36 -04:00
Yuan Xulei
7be5c38461
Bug 902168 - Ignore editable document in forms.js. r=fabrice
2013-08-14 13:53:53 -04:00
Yuan Xulei
13a1cf9254
Bug 904224 - Don't handle key events in forms.js if these is no focused input element. r=fabrice
2013-08-13 08:40:54 -04:00
Fabrice Desré
6717fc55a9
Bug 904224 - "System JS : ERROR chrome://browser/content/forms.js:827 TypeError: element is null" in green B2G mochitest-2,3 runs r=yxl
2013-08-12 21:02:11 -07:00
Jan Jongboom
3d778920d5
Bug 902153 - Ignore input type=range in forms.js. r=yxl
2013-08-12 13:17:29 -04:00
Gregor Wagner
ff45489941
Bug 902899 - Fix ContentPermission Prompt. r=etienne
2013-08-09 19:02:33 +02:00
Vivien Nicolas
46691ea109
Bug 797497 - Disable tap "scrollbar" r=fabrice
2013-08-08 15:04:04 -07:00
Gene Lian
f2b8dd7403
Bug 876397 - Inter-App Communication API (part 3, connect()). r=nsm
2013-08-16 17:49:15 +08:00
Jan Jongboom
2cfe0226a2
Bug 899999 - Implement new InputContext API. r=yxl
2013-08-07 20:07:41 -04:00
Ryan VanderMeulen
bb466304e2
Merge m-c to b2g-inbound.
2013-08-01 20:26:14 -04:00
Gene Lian
6315e42a29
Bug 850140 - B2G MMS: implement MmsService.handleDeliveryIndication() to handle delivery report (part 2, handle delivery report). r=vicamo a=koi+
2013-07-31 15:24:07 +08:00
Philipp Kewisch
a1a138e1f9
Fix bug 880511 - Web Console and Style Editor make hardcoded references to the browser window. r=dcamp
2013-08-01 10:51:24 +02:00
Fernando Jiménez
f38a8e1495
Bug 892068 - Expose MCC/MNC to payment providers in mozPay() so Webpay can disable payments per region. r=fabrice
2013-07-30 00:50:22 +02:00
Fernando Jiménez
9453005d41
Bug 816564 - Silent SMS to Authenticate Device for Mobile Billing. Part 2: mozPaymentProvider. r=vicamo, fabrice
2013-07-30 00:50:22 +02:00
Antonio M. Amaya
91be0e5f4d
Bug 896945 - Allow System Messages to inform gaia they should bring up the receiving app in a configurable way. r=gene,fabrice a=leo+
2013-07-25 14:36:15 +02:00
Alive Kuo
b2f4623018
Bug 887650 - Append extra information about activity caller in system message. r=gene
2013-07-25 13:18:24 -04:00
Alexandre Poirot
5bb03947c5
Bug 817580 - Pref off new webapps actor features until we secure remote debugger connection. r=paul.rouget
2013-07-24 11:29:04 -04:00
Alexandre Poirot
7dcfed6f65
Bug 817580 - Expose tab actors for apps in child processes. r=jimb
2013-07-24 11:28:32 -04:00
Marco Chen
0450dbca57
Bug 876334 - Gecko should use AudioChannelType to control volume not stream types. r=mwu, r=baku
2013-07-18 13:22:36 +08:00
Marco Chen
68d75198e5
Bug 876334 - Remove master/FM volume control from nsIAudioManager. r=mwu
2013-07-18 10:21:24 +08:00
Chia-hung Tai
fbec1f08b6
Bug 888821 - B2G MMS: Expose "wap.UAProf.url" and "wap.UAProf.tagname" as new Settings entries in Gecko part. r=vyang
2013-07-17 13:47:31 +08:00
Kan-Ru Chen (陳侃如)
e52a1058dc
Bug 874754 - Suppress nsIEditor.removeEditorObserver exception. r=fabrice
...
Based on patch from Yuan Xulei <xyuan@mozilla.com>
--HG--
extra : rebase_source : 77b563eaa784d42cdfd20a3aba1f5b928a53aaa6
2013-07-16 18:00:58 +08:00
Yuan Xulei
cf4e2df2a7
Bug 883129 - Converts the non-textual element to placeholder character for mozKeyboard. r=hsivonen
2013-07-12 09:04:05 -04:00
Fabrice Desré
6013d8f6c3
Bug 882506 - Remove useless nsBrowserAccess in shell.js r=vingtetun
2013-07-01 09:18:07 -07:00
Gene Lian
f00e04e3ff
Bug 887815 - [SMS][MMS] receiving successful delivery report even though delivery report is OFF in settings. r=ctai a=leo+
2013-06-28 16:53:30 +08:00
Yuan Xulei
dd28c889ff
Bug 882866 - Ignore all EditAction notifications caused by replaceSurroundingText. r=dflanagan
2013-06-23 20:43:40 -04:00
Chia-hung Tai
8eed9a1814
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
Gina Yeh
0feb8904a1
Bug 834554 - Support Bluetooth AVRCP 1.0, r=fabrice
2013-06-14 11:58:09 +08:00
Nikhil Marathe
15d77f26f6
Bug 863599 - Load PushService on Desktop. r=dougt sr=gavin
2013-06-12 17:26:44 -07:00
Austin King
59cc2eb49a
Bug 881014 - Cancel buttons in UI should call RP's oncancel method. r=jedp
2013-06-08 13:50:25 -07:00
Fernando Jiménez
fe2ecdb0e1
Bug 879387 - Is not possible to display the buttons of " install or cancel " when the payment is completed. r=fabrice
2013-06-09 20:01:35 +02:00
Vicamo Yang
e389424b1b
Bug 879671 - 2/2: add ril.cellbroadcast.disabled pref to disable Cell Broadcast completely. r=yoshi
2013-06-07 15:32:24 +08:00
Vivien Nicolas
2b401cac9b
Backout c0213576a3b7 and 780d65e3ebfa (bug 874984) because it was slowing down HTML rendering
2013-06-04 23:14:24 +02:00
Yuan Xulei
f7bfe71145
Bug 861515 - Enable Keyboard to modify the content of text field. r=fabrice
2013-04-13 22:53:41 +08:00
Fernando Jiménez
db2254e6a9
Bug 872987 - [WebPayment] Expose ICC info to the payment provider. r=fabrice
2013-06-03 09:48:58 +02:00
Jim Blandy
6e250c165d
Bug 870081: Share a common RootActor implementation amongst browser, Fennec, B2G, and xpcshell tests. r=past,mfinkle,fabrice
2013-06-02 10:19:41 +03:00
Panos Astithas
c44e64a862
Backout b0e571a21e22 for wrong bug number
2013-06-02 10:18:15 +03:00
Jim Blandy
6cc708a8d0
Bug 871081: Share a common RootActor implementation amongst browser, Fennec, B2G, and xpcshell tests. r=past,mfinkle,fabrice
...
--HG--
rename : browser/devtools/debugger/test/browser_dbg_listtabs.js => browser/devtools/debugger/test/browser_dbg_listtabs-01.js
2013-05-17 15:17:00 +03:00
Jim Blandy
2d0a298590
Use DebuggerServer.addGlobalActor to register ChromeDebuggerActor, instead of writing out code with the same effect (bug 863936). r=past,mfinkle,fabrice
2013-04-19 17:33:00 +03:00
Alexandre Poirot
1a1cd79e1c
Bug 865207 - Move webapps actor from /b2g/chrome/content to /toolkit/devtools/apps/. r=fabrice, r=dcamp
...
--HG--
rename : dom/apps/tests/unit/data/app.zip => toolkit/devtools/apps/tests/unit/data/app.zip
rename : dom/apps/tests/unit/test_webappsActor.js => toolkit/devtools/apps/tests/unit/test_webappsActor.js
rename : b2g/chrome/content/dbg-webapps-actors.js => toolkit/devtools/server/actors/webapps.js
2013-05-30 12:08:15 -04:00
Alexandre Lissy
c9b3cd1eb1
Bug 847459 - Make ro.product.model available through settings. r=tzimmermann
2013-05-27 16:26:52 +02:00
Anthony Ricaud
1ebdfa9c7f
Bug 873972 - Expose layers.draw-borders pref in gaia settings. r=vingtetun
2013-05-28 19:24:02 +02:00
Alexandre Poirot
afdd554603
Bug 876122 - Fix typos in webapps actor. r=fabrice
2013-05-28 13:30:30 -04:00
Dave Hylands
385c197922
Bug 875637 - Save default volume name pref with the correct type. r=gwagner
2013-05-24 17:40:03 -07:00
Gene Lian
815a3150ad
Bug 873348 - System Message API: s/sendSystemMessage/openAppForSystemMessage/ in the shell.js. r=fabrice
2013-05-24 16:17:54 +08:00
Alexandre Poirot
87e634da22
Bug 874984 - Scrollbars repaint incorrectly on b2g desktop. r=vingtetun
2013-05-23 17:52:03 +02:00
Dave Camp
fe7ddad39f
Bug 872091 - Rename files in the debugger server. r=past,r=jimb
...
--HG--
rename : toolkit/devtools/debugger/Makefile.in => toolkit/devtools/client/Makefile.in
rename : toolkit/devtools/debugger/dbg-client.jsm => toolkit/devtools/client/dbg-client.jsm
rename : toolkit/devtools/debugger/moz.build => toolkit/devtools/client/moz.build
rename : toolkit/devtools/debugger/Makefile.in => toolkit/devtools/server/Makefile.in
rename : toolkit/devtools/gcli/dbg-gcli-actors.js => toolkit/devtools/server/actors/gcli.js
rename : toolkit/devtools/debugger/server/dbg-profiler-actors.js => toolkit/devtools/server/actors/profiler.js
rename : toolkit/devtools/debugger/server/dbg-script-actors.js => toolkit/devtools/server/actors/script.js
rename : toolkit/devtools/styleeditor/dbg-styleeditor-actors.js => toolkit/devtools/server/actors/styleeditor.js
rename : toolkit/devtools/debugger/server/dbg-browser-actors.js => toolkit/devtools/server/actors/webbrowser.js
rename : toolkit/devtools/webconsole/dbg-webconsole-actors.js => toolkit/devtools/server/actors/webconsole.js
rename : toolkit/devtools/debugger/server/dbg-server.jsm => toolkit/devtools/server/dbg-server.jsm
rename : toolkit/devtools/debugger/server/dbg-server.js => toolkit/devtools/server/main.js
rename : toolkit/devtools/debugger/moz.build => toolkit/devtools/server/moz.build
rename : toolkit/devtools/debugger/nsIJSInspector.idl => toolkit/devtools/server/nsIJSInspector.idl
rename : toolkit/devtools/debugger/nsJSInspector.cpp => toolkit/devtools/server/nsJSInspector.cpp
rename : toolkit/devtools/debugger/nsJSInspector.h => toolkit/devtools/server/nsJSInspector.h
rename : toolkit/devtools/debugger/tests/mochitest/Makefile.in => toolkit/devtools/server/tests/mochitest/Makefile.in
rename : toolkit/devtools/debugger/tests/mochitest/moz.build => toolkit/devtools/server/tests/mochitest/moz.build
rename : toolkit/devtools/debugger/tests/mochitest/nonchrome_unsafeDereference.html => toolkit/devtools/server/tests/mochitest/nonchrome_unsafeDereference.html
rename : toolkit/devtools/debugger/tests/mochitest/test_unsafeDereference.html => toolkit/devtools/server/tests/mochitest/test_unsafeDereference.html
rename : toolkit/devtools/debugger/tests/moz.build => toolkit/devtools/server/tests/moz.build
rename : toolkit/devtools/debugger/tests/unit/head_dbg.js => toolkit/devtools/server/tests/unit/head_dbg.js
rename : toolkit/devtools/debugger/tests/unit/post_init_global_actors.js => toolkit/devtools/server/tests/unit/post_init_global_actors.js
rename : toolkit/devtools/debugger/tests/unit/post_init_tab_actors.js => toolkit/devtools/server/tests/unit/post_init_tab_actors.js
rename : toolkit/devtools/debugger/tests/unit/pre_init_global_actors.js => toolkit/devtools/server/tests/unit/pre_init_global_actors.js
rename : toolkit/devtools/debugger/tests/unit/pre_init_tab_actors.js => toolkit/devtools/server/tests/unit/pre_init_tab_actors.js
rename : toolkit/devtools/debugger/tests/unit/source-map-data/sourcemapped.coffee => toolkit/devtools/server/tests/unit/source-map-data/sourcemapped.coffee
rename : toolkit/devtools/debugger/tests/unit/source-map-data/sourcemapped.map => toolkit/devtools/server/tests/unit/source-map-data/sourcemapped.map
rename : toolkit/devtools/debugger/tests/unit/sourcemapped.js => toolkit/devtools/server/tests/unit/sourcemapped.js
rename : toolkit/devtools/debugger/tests/unit/test_add_actors.js => toolkit/devtools/server/tests/unit/test_add_actors.js
rename : toolkit/devtools/debugger/tests/unit/test_attach.js => toolkit/devtools/server/tests/unit/test_attach.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-01.js => toolkit/devtools/server/tests/unit/test_breakpoint-01.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-02.js => toolkit/devtools/server/tests/unit/test_breakpoint-02.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-03.js => toolkit/devtools/server/tests/unit/test_breakpoint-03.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-04.js => toolkit/devtools/server/tests/unit/test_breakpoint-04.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-05.js => toolkit/devtools/server/tests/unit/test_breakpoint-05.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-06.js => toolkit/devtools/server/tests/unit/test_breakpoint-06.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-07.js => toolkit/devtools/server/tests/unit/test_breakpoint-07.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-08.js => toolkit/devtools/server/tests/unit/test_breakpoint-08.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-09.js => toolkit/devtools/server/tests/unit/test_breakpoint-09.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-10.js => toolkit/devtools/server/tests/unit/test_breakpoint-10.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-11.js => toolkit/devtools/server/tests/unit/test_breakpoint-11.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-12.js => toolkit/devtools/server/tests/unit/test_breakpoint-12.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpointstore.js => toolkit/devtools/server/tests/unit/test_breakpointstore.js
rename : toolkit/devtools/debugger/tests/unit/test_dbgactor.js => toolkit/devtools/server/tests/unit/test_dbgactor.js
rename : toolkit/devtools/debugger/tests/unit/test_dbgclient_debuggerstatement.js => toolkit/devtools/server/tests/unit/test_dbgclient_debuggerstatement.js
rename : toolkit/devtools/debugger/tests/unit/test_dbgglobal.js => toolkit/devtools/server/tests/unit/test_dbgglobal.js
rename : toolkit/devtools/debugger/tests/unit/test_dbgsocket.js => toolkit/devtools/server/tests/unit/test_dbgsocket.js
rename : toolkit/devtools/debugger/tests/unit/test_eval-01.js => toolkit/devtools/server/tests/unit/test_eval-01.js
rename : toolkit/devtools/debugger/tests/unit/test_eval-02.js => toolkit/devtools/server/tests/unit/test_eval-02.js
rename : toolkit/devtools/debugger/tests/unit/test_eval-03.js => toolkit/devtools/server/tests/unit/test_eval-03.js
rename : toolkit/devtools/debugger/tests/unit/test_eval-04.js => toolkit/devtools/server/tests/unit/test_eval-04.js
rename : toolkit/devtools/debugger/tests/unit/test_eval-05.js => toolkit/devtools/server/tests/unit/test_eval-05.js
rename : toolkit/devtools/debugger/tests/unit/test_frameactor-01.js => toolkit/devtools/server/tests/unit/test_frameactor-01.js
rename : toolkit/devtools/debugger/tests/unit/test_frameactor-02.js => toolkit/devtools/server/tests/unit/test_frameactor-02.js
rename : toolkit/devtools/debugger/tests/unit/test_frameactor-03.js => toolkit/devtools/server/tests/unit/test_frameactor-03.js
rename : toolkit/devtools/debugger/tests/unit/test_frameactor-04.js => toolkit/devtools/server/tests/unit/test_frameactor-04.js
rename : toolkit/devtools/debugger/tests/unit/test_frameactor-05.js => toolkit/devtools/server/tests/unit/test_frameactor-05.js
rename : toolkit/devtools/debugger/tests/unit/test_framearguments-01.js => toolkit/devtools/server/tests/unit/test_framearguments-01.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-01.js => toolkit/devtools/server/tests/unit/test_framebindings-01.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-02.js => toolkit/devtools/server/tests/unit/test_framebindings-02.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-03.js => toolkit/devtools/server/tests/unit/test_framebindings-03.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-04.js => toolkit/devtools/server/tests/unit/test_framebindings-04.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-05.js => toolkit/devtools/server/tests/unit/test_framebindings-05.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-06.js => toolkit/devtools/server/tests/unit/test_framebindings-06.js
rename : toolkit/devtools/debugger/tests/unit/test_frameclient-01.js => toolkit/devtools/server/tests/unit/test_frameclient-01.js
rename : toolkit/devtools/debugger/tests/unit/test_frameclient-02.js => toolkit/devtools/server/tests/unit/test_frameclient-02.js
rename : toolkit/devtools/debugger/tests/unit/test_functiongrips-01.js => toolkit/devtools/server/tests/unit/test_functiongrips-01.js
rename : toolkit/devtools/debugger/tests/unit/test_getyoungestframe.js => toolkit/devtools/server/tests/unit/test_getyoungestframe.js
rename : toolkit/devtools/debugger/tests/unit/test_interrupt.js => toolkit/devtools/server/tests/unit/test_interrupt.js
rename : toolkit/devtools/debugger/tests/unit/test_listsources-01.js => toolkit/devtools/server/tests/unit/test_listsources-01.js
rename : toolkit/devtools/debugger/tests/unit/test_listsources-02.js => toolkit/devtools/server/tests/unit/test_listsources-02.js
rename : toolkit/devtools/debugger/tests/unit/test_listsources-03.js => toolkit/devtools/server/tests/unit/test_listsources-03.js
rename : toolkit/devtools/debugger/tests/unit/test_longstringactor.js => toolkit/devtools/server/tests/unit/test_longstringactor.js
rename : toolkit/devtools/debugger/tests/unit/test_longstringgrips-01.js => toolkit/devtools/server/tests/unit/test_longstringgrips-01.js
rename : toolkit/devtools/debugger/tests/unit/test_longstringgrips-02.js => toolkit/devtools/server/tests/unit/test_longstringgrips-02.js
rename : toolkit/devtools/debugger/tests/unit/test_nativewrappers.js => toolkit/devtools/server/tests/unit/test_nativewrappers.js
rename : toolkit/devtools/debugger/tests/unit/test_new_source-01.js => toolkit/devtools/server/tests/unit/test_new_source-01.js
rename : toolkit/devtools/debugger/tests/unit/test_nsjsinspector.js => toolkit/devtools/server/tests/unit/test_nsjsinspector.js
rename : toolkit/devtools/debugger/tests/unit/test_objectgrips-01.js => toolkit/devtools/server/tests/unit/test_objectgrips-01.js
rename : toolkit/devtools/debugger/tests/unit/test_objectgrips-02.js => toolkit/devtools/server/tests/unit/test_objectgrips-02.js
rename : toolkit/devtools/debugger/tests/unit/test_objectgrips-03.js => toolkit/devtools/server/tests/unit/test_objectgrips-03.js
rename : toolkit/devtools/debugger/tests/unit/test_objectgrips-04.js => toolkit/devtools/server/tests/unit/test_objectgrips-04.js
rename : toolkit/devtools/debugger/tests/unit/test_pause_exceptions-01.js => toolkit/devtools/server/tests/unit/test_pause_exceptions-01.js
rename : toolkit/devtools/debugger/tests/unit/test_pause_exceptions-02.js => toolkit/devtools/server/tests/unit/test_pause_exceptions-02.js
rename : toolkit/devtools/debugger/tests/unit/test_pauselifetime-01.js => toolkit/devtools/server/tests/unit/test_pauselifetime-01.js
rename : toolkit/devtools/debugger/tests/unit/test_pauselifetime-02.js => toolkit/devtools/server/tests/unit/test_pauselifetime-02.js
rename : toolkit/devtools/debugger/tests/unit/test_pauselifetime-03.js => toolkit/devtools/server/tests/unit/test_pauselifetime-03.js
rename : toolkit/devtools/debugger/tests/unit/test_pauselifetime-04.js => toolkit/devtools/server/tests/unit/test_pauselifetime-04.js
rename : toolkit/devtools/debugger/tests/unit/test_profiler_actor.js => toolkit/devtools/server/tests/unit/test_profiler_actor.js
rename : toolkit/devtools/debugger/tests/unit/test_source-01.js => toolkit/devtools/server/tests/unit/test_source-01.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-01.js => toolkit/devtools/server/tests/unit/test_sourcemaps-01.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-02.js => toolkit/devtools/server/tests/unit/test_sourcemaps-02.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-03.js => toolkit/devtools/server/tests/unit/test_sourcemaps-03.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-04.js => toolkit/devtools/server/tests/unit/test_sourcemaps-04.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-05.js => toolkit/devtools/server/tests/unit/test_sourcemaps-05.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-06.js => toolkit/devtools/server/tests/unit/test_sourcemaps-06.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-07.js => toolkit/devtools/server/tests/unit/test_sourcemaps-07.js
rename : toolkit/devtools/debugger/tests/unit/test_sources_backwards_compat-01.js => toolkit/devtools/server/tests/unit/test_sources_backwards_compat-01.js
rename : toolkit/devtools/debugger/tests/unit/test_sources_backwards_compat-02.js => toolkit/devtools/server/tests/unit/test_sources_backwards_compat-02.js
rename : toolkit/devtools/debugger/tests/unit/test_stepping-01.js => toolkit/devtools/server/tests/unit/test_stepping-01.js
rename : toolkit/devtools/debugger/tests/unit/test_stepping-02.js => toolkit/devtools/server/tests/unit/test_stepping-02.js
rename : toolkit/devtools/debugger/tests/unit/test_stepping-03.js => toolkit/devtools/server/tests/unit/test_stepping-03.js
rename : toolkit/devtools/debugger/tests/unit/test_stepping-04.js => toolkit/devtools/server/tests/unit/test_stepping-04.js
rename : toolkit/devtools/debugger/tests/unit/test_stepping-05.js => toolkit/devtools/server/tests/unit/test_stepping-05.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-01.js => toolkit/devtools/server/tests/unit/test_threadlifetime-01.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-02.js => toolkit/devtools/server/tests/unit/test_threadlifetime-02.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-03.js => toolkit/devtools/server/tests/unit/test_threadlifetime-03.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-04.js => toolkit/devtools/server/tests/unit/test_threadlifetime-04.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-05.js => toolkit/devtools/server/tests/unit/test_threadlifetime-05.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-06.js => toolkit/devtools/server/tests/unit/test_threadlifetime-06.js
rename : toolkit/devtools/debugger/tests/unit/test_unsafeDereference.js => toolkit/devtools/server/tests/unit/test_unsafeDereference.js
rename : toolkit/devtools/debugger/tests/unit/testactors.js => toolkit/devtools/server/tests/unit/testactors.js
rename : toolkit/devtools/debugger/tests/unit/testcompatactors.js => toolkit/devtools/server/tests/unit/testcompatactors.js
rename : toolkit/devtools/debugger/tests/unit/xpcshell.ini => toolkit/devtools/server/tests/unit/xpcshell.ini
rename : toolkit/devtools/debugger/dbg-transport.js => toolkit/devtools/server/transport.js
2013-05-21 16:39:13 -07:00
Dave Camp
a29753a3ad
Bug 871784 - b2g should specify its debug actors explicitly rather than using addBrowserActors. r=past,r=jimb,r=fabrice
2013-05-21 16:36:43 -07:00
Fabrice Desré
21a4485e0e
Bug 865022 - Set the http cache size to match the size of the /cache partition r=vingtetun
2013-05-17 15:57:10 -07:00
Hubert Figuière
ca953767ae
Bug 867829 - Part 3: receive the delete-crash event to delete crash dump when user declined. r=fabrice
2013-05-10 17:39:15 -04:00
Hubert Figuière
9a02651697
Bug 867829 - Part 1: Delete crash dumps if we disabled reporting. f=kairo r=bsmedberg,fabrice
2013-05-02 12:57:41 -04:00
Yuan Xulei
88c89cbdb5
Bug 860546 - Ignore content changes caused by key events. r=fabrice
2013-05-16 08:21:07 -04:00
Gregor Wagner
2143a3ac12
Bug 871853 - runapp.js: Don't call Services.obs.removeObserver with undefined. r=fabrice
2013-05-15 21:35:48 -04:00
Dave Hylands
1016437715
Bug 858416 - Create a composite device storage interface. r=dougt
...
* * *
Bug 858416 - Fix try test failures
2013-05-11 02:10:18 -07:00
Ryan VanderMeulen
aa9e660583
Backed out changeset dbf0c9f4a4b9 (bug 858416) for B2G mochitest-3 failures.
2013-05-11 09:47:37 -04:00
Dave Hylands
7da14f84fb
Bug 858416 - Create a composite device storage interface. r=dougt
2013-05-11 02:10:18 -07:00
Yuan Xulei
78ed6d42b3
Bug 869303 - Notify keyboard to hide when the app window is closed. r=smaug
2013-05-08 12:27:59 -04:00
Jose Antonio Olivera Ortega
927a5894e1
Bug 863130 - (Regional) The SMS delivery report is on by default. r=vicamo
2013-05-07 16:26:03 +02:00
Alexandre Poirot
866a62a60d
Bug 844227 - Add more functions to the webapps actor. r=fabrice
2013-05-06 09:51:53 -04:00
Ryan VanderMeulen
559836a039
Backed out changeset 4270acd843cc (bug 863130) for B2G Marionette failures.
2013-05-06 08:57:03 -04:00
Jose Antonio Olivera Ortega
65b60f123f
Bug 863130 - (Regional) The SMS delivery report is on by default. r=vicamo
2013-05-06 10:20:23 +02:00
=?UTF-8?q?"Yuan=20Xulei(=E8=A2=81=E5=BE=90=E7=A3=8A)"?=
960e4600db
Bug 860546 - [keyboard] Notify keyboard when the content of current input field is changed by JS. r=fabrice
2013-05-03 15:02:30 +02:00
Nikhil Marathe
31dd25216e
Bug 863598 - SimplePush: Make PushService a module. r=dougt
...
--HG--
rename : dom/push/src/PushService.js => dom/push/src/PushService.jsm
2013-05-02 10:45:18 +05:30
Kan-Ru Chen (陳侃如)
1363e28161
Bug 865768 - CSS files should use '%' as preprocessor marker. r=fabrice
2013-04-30 11:57:10 +08:00
Ryan VanderMeulen
263fa2498e
Merge m-c to inbound.
...
--HG--
rename : mobile/android/base/resources/layout-large-v11/browser_toolbar_menu.xml => mobile/android/base/resources/layout-large-v11/browser_toolbar.xml
2013-04-26 16:46:46 -04:00
Vivien Nicolas
4dbb55f817
Bug 864891 - b2g/chrome/content/forms.js can dispatch a 'change' event on the wrong window in a single process build. r=fabrice
2013-04-26 12:17:25 +02:00
Ms2ger
2eb87829ec
Backout changesets 8d69a81abff9:6c2e3ea6afa6 for M2 timeouts and crashtest, reftest leaks.
2013-04-26 13:23:17 +02:00
Vivien Nicolas
812d9b5f5a
Bug 864891 - b2g/chrome/content/forms.js can dispatch a 'change' event on the wrong window in a single process build. r=fabrice
2013-04-26 12:17:25 +02:00
Hubert Figuière
6b1000074d
Bug 855040 - Add a bit of logging in the crash report to help diagnostics and silence exception of crash report is disabled. r=fabrice
2013-04-22 16:09:15 -04:00
Vivien Nicolas
cc2f48c678
Bug 847354 - Avoid the xbl bindings for inputs/textareas on b2g r=fabrice
2013-04-18 17:29:08 -07:00
Fabrice Desré
ff3c580b5e
Bug 861592 - Make isContentEditable() in form.js not fail with null elements r=ttaubert
2013-04-13 23:50:53 -07:00
Masatoshi Kimura
051ae50828
Bug 771975 - Remove -moz-prefixed gradients usage from b2g. r=fabrice
2013-04-09 07:44:25 +09:00
Xin Zhang
ff536816b4
Bug 849764 - Replace removeObserver() calls with three params with two in b2g dir. r=mak
2013-04-06 14:46:34 -04:00
Kyle Machulis
5aa83c3e11
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
2013-04-01 11:36:59 -07:00
Kyle Machulis
c79ccc0693
Backout for changeset 03452b187c14 (Bug 855465) due to bustage on a CLOSED TREE; r=qdot
2013-03-29 15:12:58 -07:00
Kyle Machulis
a59d40f143
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
...
--HG--
extra : rebase_source : 004a756492323e1a049586e85b3be5037159df20
2013-03-29 13:56:18 -07:00
Alive Kuo
653dcd8b8b
Bug 853454 - Fix non-normal audio channel visibility state error. r=baku
2013-03-27 12:04:32 +08:00
Patrick Wang
fdd800eba9
Bug 846734 - adding certificate exception from certificate error page. r=fabrice
2013-03-05 10:19:00 +08:00