f9faedda0179e32f5b103920b2ba154fc78118bb: Bug 1081952 - Explicitly set the background finalize state as the last step. r=terrence
Emanuel Hoogeveen <emanuel.hoogeveen@gmail.com> - Mon, 13 Oct 2014 10:17:00 +0200 - rev 210328
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1081952 - Explicitly set the background finalize state as the last step. r=terrence
3193763d0a3bbe6bfca4a07f73802320e3b8ca07: Bug 1069222 - testcase for ImageCapture on gonk. r=roc
Alfredo Yang <ayang@mozilla.com> - Tue, 14 Oct 2014 00:28:00 +0200 - rev 210327
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1069222 - testcase for ImageCapture on gonk. r=roc
d150f12f7e603ec059a76b6b0ffe6fe03d3deaee: Bug 992454 - Part 2: Integrate TaskTracer into GeckoProfiler. r=benwa.
Shelly Lin <slin@mozilla.com> - Tue, 14 Oct 2014 10:56:44 +0800 - rev 210326
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 992454 - Part 2: Integrate TaskTracer into GeckoProfiler. r=benwa.
6cb2c1756e099c72159ae4d9574956440de6d416: Bug 992454 - Part 1: Log TaskTracer data into string buffers and bug fixes. r=khuey.
Shelly Lin <slin@mozilla.com>,Cervantes Yu <cyu@mozilla.com> - Tue, 14 Oct 2014 10:47:59 +0800 - rev 210325
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 992454 - Part 1: Log TaskTracer data into string buffers and bug fixes. r=khuey.
94d1b30bde0022bc8c79e5b1b0128e121b579b1b: Bug 989198, Patch 5: Mochitest for BeforeAfterKeyboardEvent, r=smaug.
Gina Yeh <gyeh@mozilla.com> - Tue, 14 Oct 2014 15:09:41 +0800 - rev 210324
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 989198, Patch 5: Mochitest for BeforeAfterKeyboardEvent, r=smaug.
---
dom/events/test/bug989198_embedded.html | 20 ++
dom/events/test/bug989198_helper.js | 200 ++++++++++++++++++++
dom/events/test/mochitest.ini | 9 +
.../test/test_dom_before_after_keyboard_event.html | 117 ++++++++++++
...est_dom_before_after_keyboard_event_remote.html | 142 ++++++++++++++
5 files changed, 488 insertions(+)
create mode 100644 dom/events/test/bug989198_embedded.html
create mode 100644 dom/events/test/bug989198_helper.js
create mode 100644 dom/events/test/test_dom_before_after_keyboard_event.html
create mode 100644 dom/events/test/test_dom_before_after_keyboard_event_remote.html
01e064ceb505c6b15251f846f719bb8e4ebf7487: Bug 989198, Patch 4: Dispatch both chrome event and key event for hardward keys, and add new permission, r=fabrice.
Gina Yeh <gyeh@mozilla.com> - Tue, 14 Oct 2014 15:09:36 +0800 - rev 210323
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 989198, Patch 4: Dispatch both chrome event and key event for hardward keys, and add new permission, r=fabrice.
---
b2g/chrome/content/shell.js | 13 ++++++++-----
dom/apps/PermissionsTable.jsm | 6 ++++++
testing/mochitest/manifest.webapp | 3 ++-
3 files changed, 16 insertions(+), 6 deletions(-)
f5a538109e367708626eccba5584f8ac2d87e88a: Bug 989198, Patch 3: Dispatch BeforeAfterKeyboardEvent on b2g, r=smaug
Gina Yeh <gyeh@mozilla.com> - Tue, 14 Oct 2014 15:09:24 +0800 - rev 210322
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 989198, Patch 3: Dispatch BeforeAfterKeyboardEvent on b2g, r=smaug
---
b2g/app/b2g.js | 3 +
content/base/src/nsGkAtomList.h | 4 +
dom/events/EventNameList.h | 16 +++
dom/events/EventStateManager.cpp | 6 +
dom/ipc/PBrowser.ipdl | 2 +
dom/ipc/TabChild.cpp | 6 +-
dom/ipc/TabParent.cpp | 24 ++++
dom/ipc/TabParent.h | 1 +
layout/base/nsIPresShell.h | 12 +-
layout/base/nsPresShell.cpp | 250 ++++++++++++++++++++++++++++++++++++++
layout/base/nsPresShell.h | 26 ++++
modules/libpref/init/all.js | 3 +
12 files changed, 350 insertions(+), 3 deletions(-)
3ff227d79d74d1a0ce0d57a999f8395838d47db7: Bug 989198, Patch 2: Implementation of BeforeAfterKeyboardEvent, sr=smaug, r=masayuki.
Gina Yeh <gyeh@mozilla.com> - Tue, 14 Oct 2014 15:09:20 +0800 - rev 210321
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 989198, Patch 2: Implementation of BeforeAfterKeyboardEvent, sr=smaug, r=masayuki.
---
dom/events/BeforeAfterKeyboardEvent.cpp | 92 ++++++++++++++++++++++
dom/events/BeforeAfterKeyboardEvent.h | 45 +++++++++++
dom/events/EventDispatcher.cpp | 3 +
dom/events/KeyboardEvent.cpp | 60 ++++++++------
dom/events/KeyboardEvent.h | 8 +-
dom/events/moz.build | 2 +
dom/events/test/test_all_synthetic_events.html | 4 +
dom/interfaces/events/nsIDOMEvent.idl | 7 ++
dom/tests/mochitest/general/test_interfaces.html | 48 ++++++-----
dom/webidl/BeforeAfterKeyboardEvent.webidl | 24 ++++++
dom/webidl/moz.build | 1 +
11 files changed, 250 insertions(+), 44 deletions(-)
create mode 100644 dom/events/BeforeAfterKeyboardEvent.cpp
create mode 100644 dom/events/BeforeAfterKeyboardEvent.h
create mode 100644 dom/webidl/BeforeAfterKeyboardEvent.webidl
186743fc6f6d388ddbf02e2bdf9402dbd6acff77: Bug 989198, Patch 1: Implementation of InternalBeforeAfterKeyboardEvent, r=smaug,masayuki
Gina Yeh <gyeh@mozilla.com> - Tue, 14 Oct 2014 15:09:15 +0800 - rev 210320
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 989198, Patch 1: Implementation of InternalBeforeAfterKeyboardEvent, r=smaug,masayuki
---
widget/BasicEvents.h | 5 +++
widget/EventClassList.h | 1 +
widget/TextEvents.h | 72 +++++++++++++++++++++++++++++++++++--
widget/nsGUIEventIPC.h | 31 ++++++++++++++++
widget/shared/WidgetEventImpl.cpp | 4 +++
5 files changed, 111 insertions(+), 2 deletions(-)
c76eb2abb768775a1300591b6fd18f38f65ca1b3: Merge fx-team to m-c a=merge
Wes Kocher <wkocher@mozilla.com> - Tue, 14 Oct 2014 16:59:12 -0700 - rev 210319
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Merge fx-team to m-c a=merge
7246195fb751da0975f4a5abff617ff42e2ba712: Bug 1030523 - Back out cset 038356d89dc2 so we properly initialize the compositor when we get a surface. r=snorp
Kartikaya Gupta <kgupta@mozilla.com> - Tue, 14 Oct 2014 14:52:05 -0400 - rev 210318
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1030523 - Back out cset 038356d89dc2 so we properly initialize the compositor when we get a surface. r=snorp
1a5153ae014fcc6025e11e38bd6628df1c5d26b3: Bug 1071686 - Enable creation of an initial displayport on non-B2G platforms. r=mstange
Kartikaya Gupta <kgupta@mozilla.com> - Tue, 14 Oct 2014 14:51:34 -0400 - rev 210317
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1071686 - Enable creation of an initial displayport on non-B2G platforms. r=mstange
1d1e647773f1fec4ef93050e89ae9487ad8cd235: Bug 1082108 - Add a button to disable the devedition theme from Customize Mode;r=Gijs
Brian Grinstead <bgrinstead@mozilla.com> - Tue, 14 Oct 2014 13:29:30 -0500 - rev 210316
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1082108 - Add a button to disable the devedition theme from Customize Mode;r=Gijs
4898d184d713dc5295bc0bb2d02126db27a3a76c: Bug 1045053 - Part 2: tests for OS locale handling. r=bnicholson
Richard Newman <rnewman@mozilla.com> - Wed, 01 Oct 2014 18:38:43 -0700 - rev 210315
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1045053 - Part 2: tests for OS locale handling. r=bnicholson
641e305c19fe2869133c2dc713dc71571af1fd09: Bug 1045053 - Part 1: set intl.accept_languages from Android OS/app locale. r=bnicholson
Richard Newman <rnewman@mozilla.com> - Wed, 01 Oct 2014 18:09:42 -0700 - rev 210314
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1045053 - Part 1: set intl.accept_languages from Android OS/app locale. r=bnicholson
5eb5877d73667148f3a56de978d758a647e5f9cb: Bug 1045053 - Part 0: add descriptive comments for locale handling. r=me
Richard Newman <rnewman@mozilla.com> - Wed, 01 Oct 2014 18:09:42 -0700 - rev 210313
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1045053 - Part 0: add descriptive comments for locale handling. r=me
1ecb840280ed29f4751c6ed837f109289ec69c39: Bug 1081604 - Remove old --url munging code. r=wesj
Richard Newman <rnewman@mozilla.com> - Tue, 14 Oct 2014 08:40:38 -0700 - rev 210312
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1081604 - Remove old --url munging code. r=wesj
112e932d34a5d9d4da4296c60a337ac0105fc7a9: Bug 1068671 - folderReadOnly doesn't pertain to bookmarks or results. r=mak
Asaf Romano <mano@mozilla.com> - Tue, 14 Oct 2014 17:03:28 +0300 - rev 210311
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1068671 - folderReadOnly doesn't pertain to bookmarks or results. r=mak
23f1b838652c660faf469d250a033c4ba00f78aa: Merge m-c to fx-team
Carsten "Tomcat" Book <cbook@mozilla.com> - Tue, 14 Oct 2014 15:52:03 +0200 - rev 210310
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Merge m-c to fx-team
14cfea6cd6aee50aeb649e1ade94e61b6129eee6: Bug 1076967: fix Error object data propagation to Loop content pages. r=bholley
Mike de Boer <mdeboer@mozilla.com> - Tue, 14 Oct 2014 12:14:09 +0200 - rev 210309
Push
1 by root at Mon, 20 Oct 2014 17:29:22 +0000
Bug 1076967: fix Error object data propagation to Loop content pages. r=bholley