Commit Graph

828 Commits

Author SHA1 Message Date
Bill McCloskey
b896cdadec Bug 1175770 - New extension API (r=Mossop) 2015-08-03 10:41:24 -07:00
Carsten "Tomcat" Book
c9902a75bc Backed out changeset 4e3821b236f9 (bug 1175770) 2015-08-03 09:37:54 +02:00
Bill McCloskey
fa560649ba Bug 1175770 - New extension API (r=Mossop) 2015-08-02 17:29:55 -07:00
Marcos Caceres
114ff1ccd0 Bug 1171200 - Add means of checking if a document links to a manifest. r=billm 2015-07-30 11:56:12 -04:00
Carsten "Tomcat" Book
3e65337394 Backed out changeset 4b328a6f7448 (bug 1171200) for frequent asan m1 test failures on a CLOSED TREE 2015-07-30 15:11:48 +02:00
Marcos Caceres
8ecb0a6619 Bug 1171200 - Add means of checking if a document links to a manifest. r=billm 2015-07-29 16:58:00 +02:00
Mark Finkle
071ce084f6 Bug 1188609 - Remove mirroring support from RokuApp (Toolkit) r=snorp 2015-07-29 16:09:25 -04:00
Ehsan Akhgari
1eb6296057 Bug 1188158 - Move nsIPrivateBrowsingTrackingProtectionWhitelist to its own component in toolkit; r=jdm 2015-07-28 15:01:05 -04:00
Giovanny Andres Gongora Granada
2df2ce292c Bug 1150312 - Remove MOZ_SHARK. r=glandium 2015-07-23 18:16:00 -04:00
Tom Tromey
e469d3beb5 Bug 1148593 - Create async stack in callback objects. r=bz, r=fitzgen 2015-07-24 07:01:00 -04:00
Ryan VanderMeulen
326be0b0e2 Merge m-c to inbound. a=merge 2015-07-27 10:41:37 -04:00
Neil Deakin
bbbce917b5 Bug 1186398, perform correct check when comparing if the select value has changed, r=felipe 2015-07-27 07:33:55 -04:00
Panos Astithas
e3084d3f15 Bug 1145503 - TP exceptions added while in Private Browsing mode persist beyond the Private Browsing session. r=ehsan 2015-07-26 13:23:12 +03:00
Franziskus Kiefer
2c70bcc951 Bug 1174913 - anchor and area referrer attributes. r=ckerschb, r=bz 2015-06-05 15:25:24 -07:00
Carsten "Tomcat" Book
a7d75fdf60 Merge mozilla-central to fx-team 2015-07-20 12:07:51 +02:00
Dão Gottwald
344d5d2bcd Bug 1151412 - Set the default popup notification anchor icon before all popup-specific anchor icons. r=mdeboer 2015-07-20 11:57:00 +02:00
Ryan VanderMeulen
078d2ab402 Merge inbound to m-c. a=merge 2015-07-17 10:26:22 -04:00
Kyle Huey
8d64b08b31 Bug 1182316: Part 3 - Add assertions to most other WebIDL entry points, clean up nsIDOMJSWindow cruft. r=peterv 2015-07-16 22:10:35 -07:00
mcaceres@mozilla.com
4a90596778 Backed out changeset 01d03b6be047 (bug 1171200) 2015-07-17 11:45:59 +10:00
Riadh Chtara
361e9cc2b9 Bug 1175300 - Switch password manager to using displayOrigin to display the origin in the capture doorhanger. r=MattN 2015-07-15 21:26:54 -07:00
Sylvestre Ledru
c61c2ce747 Bug 1176533 - Rename the variable MOZ_APP_VERSION_ABOUT for something more general r=glandium 2015-07-11 19:37:54 -06:00
Sylvestre Ledru
632871d965 Bug 1145171 - Show the detailed version in about:support (usefull for beta, no impact for the rest) r=dolske 2015-07-11 19:36:42 -06:00
Alessio Placitelli
3f98d5c2f0 Bug 1180790 - Stop resetting the client id on FHR opt-out. r=gfritzsche 2015-07-09 04:47:00 +02:00
Wes Kocher
cc806c6518 Merge inbound to central, a=merge 2015-07-09 18:01:25 -07:00
Neil Rashbrook
11b8e5e86d Bug 1129957 - RemoteWebNavigation doesn't accept postdata or headers. r=Mossop 2015-07-09 12:18:11 -05:00
Jan Odvarko
5cc10cbbe7 Bug 1181506 - Define Cc and Ci. r=Yoric 2015-07-09 11:30:16 +02:00
Marcos Caceres
1d3b143a7f Bug 1171200 - Add means of checking if a document links to a manifest. r=billm.
---
 dom/ipc/manifestMessages.js                        | 166 +++++++++-----------
 ...ObjectProcessor.js => ImageObjectProcessor.jsm} |   0
 dom/manifest/ManifestFinder.jsm                    |  58 +++++++
 dom/manifest/ManifestObtainer.js                   |  92 -----------
 dom/manifest/ManifestObtainer.jsm                  | 170 +++++++++++++++++++++
 ...{ManifestProcessor.js => ManifestProcessor.jsm} |  18 +--
 .../{ValueExtractor.js => ValueExtractor.jsm}      |   4 +-
 dom/manifest/WebManifest.jsm                       |  19 ---
 dom/manifest/moz.build                             |  10 +-
 dom/manifest/test/browser.ini                      |   3 +-
 .../test/browser_ManifestObtainer_obtain.js        |   2 +-
 dom/manifest/test/browser_hasManifestLink.js       | 109 +++++++++++++
 dom/manifest/test/common.js                        |   4 +-
 dom/security/test/csp/browser_test_web_manifest.js |  12 +-
 .../csp/browser_test_web_manifest_mixed_content.js |  10 +-
 toolkit/modules/PromiseMessage.jsm                 |  36 +++++
 toolkit/modules/moz.build                          |   1 +
 17 files changed, 467 insertions(+), 247 deletions(-)
 rename dom/manifest/{ImageObjectProcessor.js => ImageObjectProcessor.jsm} (100%)
 create mode 100644 dom/manifest/ManifestFinder.jsm
 delete mode 100644 dom/manifest/ManifestObtainer.js
 create mode 100644 dom/manifest/ManifestObtainer.jsm
 rename dom/manifest/{ManifestProcessor.js => ManifestProcessor.jsm} (95%)
 rename dom/manifest/{ValueExtractor.js => ValueExtractor.jsm} (96%)
 delete mode 100644 dom/manifest/WebManifest.jsm
 create mode 100644 dom/manifest/test/browser_hasManifestLink.js
 create mode 100644 toolkit/modules/PromiseMessage.jsm
2015-07-08 13:26:32 +10:00
George Wright
8d7a2ed8c5 Bug 1168691 - Preserve the text direction for the select element itself r=mconley 2015-07-13 22:03:51 -04:00
George Wright
34ae126033 Bug 1179478 - Support tooltips for option elements in e10s r=mconley 2015-07-13 22:14:31 -04:00
Ryan VanderMeulen
9f708a5c1b Backed out changesets fa9fe193778f and 3eaf867930dd (bug 1148593) for test_async_setTimeout_stack.html and test_async_setTimeout_stack_across_globals.html failures. 2015-07-17 12:37:24 -04:00
Tom Tromey
2e72ef5901 Bug 1148593 - Create async stack in callback objects. r=bz, r=fitzgen 2015-07-17 07:48:00 -04:00
Phil Ringnalda
ab06bdf2b9 Merge m-c to m-i 2015-07-03 19:15:06 -07:00
Michael Layzell
4354df201c Bug 1170200 - Part 2: Update JavaScript consumers of nsIPermissionManager::Remove; r=ehsan 2015-07-03 17:12:27 -04:00
Ehsan Akhgari
c6abaf9f02 Backout bug 1170200 because of test failures on a CLOSED TREE 2015-07-03 16:43:47 -04:00
Nick Alexander
344693007a Bug 1174458 - Move WebChannel message support to toolkit/content. r=markh
This makes WebChannel support available to all XUL applications that
use toolkit/, including browser/ and mobile/android/.

The new Robocop tests are necessary because we can't run the existing
browser-chrome tests on Android (yet).
2015-06-30 11:46:27 -07:00
Michael Layzell
492e17ebff Bug 1170200 - Part 2: Update JavaScript consumers of nsIPermissionManager::Remove; r=ehsan 2015-07-03 14:18:23 -04:00
Milan Sreckovic
c474a69974 Bug 1171677 - Part 2. Safe mode in about:support. r=MattN 2015-06-26 14:21:46 -07:00
Neil Deakin
80de8e4360 Bug 1149745, on Windows, menulist should select the value when the cursor keys are used to navigate items, r=neil 2015-06-26 09:32:25 -07:00
Carsten "Tomcat" Book
135b0588cd merge mozilla-inbound to mozilla-central a=merge 2015-06-22 14:03:17 +02:00
Jared Wein
cc26f24754 Bug 1176112 - A/B test for default browser setting UI on Windows 10. r=Gijs 2015-06-20 01:16:05 -04:00
Ryan VanderMeulen
4d4652b6fe Merge m-c to fx-team. a=merge 2015-06-17 15:05:37 -04:00
Shane Caraveo
0dedf92a3c Bug 1175306 fix metadata url for hello and share, r=markh 2015-06-17 11:59:15 -07:00
Bill McCloskey
4c97d96b0a Bug 1171256 - Add an API similar to Chrome's webNavigation (r=Mossop) 2015-06-19 17:35:06 -07:00
Bill McCloskey
0db020fa01 Bug 1171248 - Add MatchPattern support to WebRequest module (r=Mossop) 2015-06-19 17:35:06 -07:00
Matthew Noorenberghe
244e936d98 Bug 1173688 - Don't show the Sync promo for https://accounts.firefox.com password doorhangers. r=markh 2015-06-15 23:36:13 -07:00
Chris Pearce
de5c99ea0f Bug 1175006 - Reset state so we re-try creating a trial GMPVideoDecoder whenever Firefox updates. r=spohl 2015-06-17 11:00:42 +12:00
Simon Lindholm
04a8d1ecf7 Bug 1174291 - Fix ctrl-return for e10s findbar. r=evilpie 2015-06-12 13:07:00 -04:00
Simon Lindholm
d9d419c705 Bug 1174289 - Remove fake focus-ring after e10s findbar is closed. r=evilpie 2015-06-12 13:09:00 -04:00
George Wright
82f69a1a77 Bug 1128162 - Scale the select popup's text to match the page zoom r=mconley 2015-06-08 14:41:17 -04:00
Wes Kocher
263ad28351 Merge fx-team to central, a=merge 2015-06-11 17:18:11 -07:00