Kris Maglione
81d6b6f832
Bug 1375490: Part 1 - Correctly support alerts in OOP popups. r=mixedpuppy
...
MozReview-Commit-ID: KgqAKMLmuTI
2017-08-02 12:49:25 -07:00
UK992
890c6e6ae5
Bug 1363485 - Update tests r=dao
...
MozReview-Commit-ID: 4epuVQVCJPH
2017-07-30 20:39:55 +02:00
Nicolas Chevobbe
5c01f98cc0
Bug 1386221 - Fix test for inspect binding on 56 beta. r=bgrins.
...
The test was failing on 56 beta because the new console frontend isn't enabled there and thus
the ObjectInspector that were tested not in the old frontend.
This patch adds a branch in the test so we can wait for the correct element (VariableView or ObjectInspector)
depending on whether the new console frontend is enabled or not.
MozReview-Commit-ID: HGGgr7CWMpe
2017-08-01 19:59:24 +02:00
Sebastian Hengst
6b72dd3d4c
Backed out changeset f3e224764ca8 (bug 1363485)
2017-08-02 16:24:54 +02:00
Sebastian Hengst
94822f2368
Backed out changeset 469a6a99593a (bug 1386221) for failing browser_ext_devtools_inspectedWindow_eval_bindings.js. r=backout
2017-08-02 16:07:44 +02:00
UK992
ddaf4b64ea
Bug 1363485 - Update tests r=dao
...
MozReview-Commit-ID: 4epuVQVCJPH
2017-07-30 20:39:55 +02:00
Nicolas Chevobbe
5502b6a028
Bug 1386221 - Fix test for inspect binding on 56 beta. r=bgrins.
...
The test was failing on 56 beta because the new console frontend isn't enabled there and thus
the ObjectInspector that were tested not in the old frontend.
This patch adds a branch in the test so we can wait for the correct element (VariableView or ObjectInspector)
depending on whether the new console frontend is enabled or not.
MozReview-Commit-ID: HGGgr7CWMpe
2017-08-01 19:59:24 +02:00
Marco Castelluccio
91823bf6b0
Bug 1357517 - Remove or delay Preferences.jsm usage from some browser/components/* files. r=Gijs
2017-07-31 13:25:41 +02:00
Kris Maglione
debd2ac908
Bug 1357902 - Use improved locale service APIs for localization. r=gandalf
...
MozReview-Commit-ID: 6Aj0SZkCJwg
2017-05-04 18:28:05 -07:00
Andrew Halberstadt
86f21296a2
Bug 1383120 - Enable no-arbitrary-setTimeout eslint rule on xpcshell tests, r=mossop
...
MozReview-Commit-ID: 6DqLaZ9n5EM
2017-07-26 09:08:07 -04:00
Carsten "Tomcat" Book
c50857d77e
Backed out changeset 29131feeed60 (bug 1380065) for windows 7 perma failure in test_bug884693.xul | Got expected message count - got 1, expected +0
2017-07-25 10:52:58 +02:00
Sam Foster
f330227443
Bug 1380065 - Disable arrow-panel animations if the cosmeticAnimations pref is set to false. r=jaws
...
* Toggle animate=false attribute on arrow panels when toolkit.cosmeticAnimations.enabled is false
* Use preferences-service component to lookup the pref in the arrowpanel binding
* Disable this pref during tests to remove a source of instability and timing-based test failures in chrome/UI tests.
* Enable cosmeticAnimations for tests which depend on existing behavior
* Re-enable cosmeticAnimations pref for browser_ext_popup_select.js which is known to be more reliable with animations
MozReview-Commit-ID: IvA2ySPPmeJ
2017-07-13 14:30:38 -04:00
Wes Kocher
8e8eee80a7
Backed out changeset 2e0c2b3bc28b (bug 1380065) for eslint failures in browser_ext_popup_select.js a=backout
...
MozReview-Commit-ID: HZqI6A06YiO
2017-07-24 17:25:37 -07:00
Sam Foster
1a47bab2b4
Bug 1380065 - Disable arrow-panel animations if the cosmeticAnimations pref is set to false. r=jaws
...
* Toggle animate=false attribute on arrow panels when toolkit.cosmeticAnimations.enabled is false
* Use preferences-service component to lookup the pref in the arrowpanel binding
* Disable this pref during tests to remove a source of instability and timing-based test failures in chrome/UI tests.
* Enable cosmeticAnimations for tests which depend on existing behavior
* Re-enable cosmeticAnimations pref for browser_ext_popup_select.js which is known to be more reliable with animations
MozReview-Commit-ID: IvA2ySPPmeJ
2017-07-13 14:30:38 -04:00
Tomislav Jovanovic
6b6b1d4751
Bug 1268020 - Implement "tools_menu" context r=kmag
...
MozReview-Commit-ID: KPUsBbqyQTC
2017-06-28 16:19:24 -07:00
Ryan VanderMeulen
c7ea83669e
Merge m-c to autoland. a=merge
...
CLOSED TREE
2017-07-21 09:42:41 -04:00
Gijs Kruitbosch
892db54d00
Bug 1373238 - make popup resize test not care about rounding errors so it works on local hidpi machines, r=mstriemer
...
MozReview-Commit-ID: 3ojX1PYmBfq
2017-06-09 23:22:09 +01:00
Gijs Kruitbosch
6ea9acbc72
Bug 1354086 - switch overflow panel to using a photonpanelmultiview, allowing webextension views to specify their own size, r=mikedeboer
...
MozReview-Commit-ID: 1uHEKXsO8vh
2017-07-19 21:23:46 +01:00
Wes Kocher
518592e048
Backed out changeset c49af70f1a94 (bug 1378882) for eslint failures in ext-chrome-settings-overrides.js a=backout CLOSED TREE
...
MozReview-Commit-ID: DAuBI2jFzG3
2017-07-18 22:44:06 -07:00
Nicolas Chevobbe
550c5dbe71
Bug 1382690 - Adapt extensions inspect() calls to the new frontend. r=bgrins
...
The inspect command in extension was directly calling jsterm.inspectObject and doing so bypassed
the code we implemented for the command on the new frontend (i.e. no more variable view).
This patch modifies the jsterm inspectObject function so it can do the expected behavior,
and also reverts some changes made in the original inspect command bug, so we only deal with
the new frontend code in jsterm.inspectObject.
This implied changing an extension test that was waiting for the variable view to boot-up.
The test was modified to match the tests we already have for the inspect command on the new
console frontend.
MozReview-Commit-ID: 8fZV20Mck8r
2017-07-20 14:56:46 +02:00
Michael Kaply
ce627f6470
Bug 1378882 - Support is_default for built-in engines only. r=mixedpuppy
...
MozReview-Commit-ID: C4iM2boQhK3
2017-07-18 11:28:33 -05:00
Luca Greco
f64189b389
Bug 1341304 - Implement devtools.panels.elements.onSelectionChanged. r=aswan
...
MozReview-Commit-ID: HMKvnk3wDyX
2017-06-01 20:06:53 +02:00
Kit Cambridge
baf9b5cdad
Bug 1380718 - Include the operation name in bookmark validation errors. r=mak
...
MozReview-Commit-ID: H4vp6ZULSq7
2017-07-13 10:09:49 -07:00
Bob Silverberg
5e908eb7b7
Bug 1333376 - Support reading the title and setting the title preface of a Window object, r=aswan
...
Implements a title property on the Window object, and allows for a titlePreface to be set
both via windows.create and via windows.update.
MozReview-Commit-ID: CaWwPN0utzs
2017-07-05 16:53:10 -04:00
Thomas Wisniewski
58faf0ee3f
Bug 1348911 - Add lastAccessed to tabs.Tab; r=mixedpuppy,zombie
...
MozReview-Commit-ID: 4ulhseGDQ4P
2017-07-07 20:17:23 -04:00
Kris Maglione
857229d344
Bug 1379508: Follow-up: Disable select popup test on Linux for frequent intermittent failures.
...
MozReview-Commit-ID: GiHc1OVMFEh
2017-07-15 21:08:44 -07:00
Kris Maglione
b067729a94
Bug 1379508: Follow-up: Disable select popup test on OS-X for alignment issues.
...
MozReview-Commit-ID: 9GfteuwKeTb
2017-07-15 15:27:24 -07:00
Kris Maglione
d1e71fd7ee
Bug 1379508: Part 3 - Support <select> popups in OOP popup browsers. r=zombie
...
MozReview-Commit-ID: BuAjyqg1aja
2017-07-13 15:47:52 -07:00
Swapnesh Kumar Sahoo
644cd8eb67
Bug 1321544 - Support icons for context menu items; r=zombie
...
MozReview-Commit-ID: HLaL8h0WK2c
2017-07-11 22:27:20 +05:30
Kris Maglione
83d403d84c
Bug 1380290: Use correct message manager when communicating with inline options browsers. r=aswan
...
MozReview-Commit-ID: HpxXG3S2zgp
2017-07-12 17:41:12 -07:00
dw-dev
24b3acee78
Bug 1269300 Patch 5;r=mixedpuppy
...
MozReview-Commit-ID: ByikIYU4ASF
2017-07-13 18:34:29 +01:00
Bob Silverberg
aaf77663a9
Bug 1330494 - Part 2: Use the ExtensionsSettingsStore to handle precedence for extensions using chrome_url_overrides, r=aswan
...
MozReview-Commit-ID: 5sKtIXjdSmC
2017-06-28 13:11:19 -07:00
Mark Banner
b1b7a75372
Bug 1380009 - Enable the ESLint no-return-await call to avoid unnecessary intermediate promise creation. r=mossop
...
MozReview-Commit-ID: EnhSBHMjurr
2017-07-11 22:49:55 +01:00
Thomas Wisniewski
326c595931
Bug 1376991 - Extend browsingData to restrict removing cookies to a give list of hostnames; r=mixedpuppy
...
MozReview-Commit-ID: 4Tfneh5s1Q8
***
Fixes for try run failures
MozReview-Commit-ID: 2BAT1GUcvH3
2017-06-30 09:11:18 -04:00
Kris Maglione
103ba64e08
Bug 1357486: Enable OOP extensions by default on Windows. r=aswan
...
MozReview-Commit-ID: 3Tet7tNtmGx
2017-07-06 21:13:40 -07:00
Kris Maglione
8f3415fa10
Bug 1357490: Part 2: Run browser xpcshell tests in both in-process and OOP modes. r=aswan
...
MozReview-Commit-ID: 1ogotK4j3cy
2017-05-29 14:10:27 -07:00
Sebastian Hengst
eee4bfdf52
Backed out changeset e017440a55a8 (bug 1357490)
2017-07-08 11:30:47 +02:00
Sebastian Hengst
0e23d27727
Backed out changeset 7124641a168f (bug 1357486)
2017-07-08 11:23:24 +02:00
Kris Maglione
8f13d414d9
Bug 1357486: Enable OOP extensions by default on Windows. r=aswan
...
MozReview-Commit-ID: 3Tet7tNtmGx
2017-07-06 21:13:40 -07:00
Kris Maglione
86ce0db3e8
Bug 1357490: Part 2: Run browser xpcshell tests in both in-process and OOP modes. r=aswan
...
MozReview-Commit-ID: 1ogotK4j3cy
2017-05-29 14:10:27 -07:00
Carsten "Tomcat" Book
38f8043d36
Backed out changeset c32994ea5a67 (bug 1357490)
2017-07-07 10:43:53 +02:00
Kris Maglione
1c8442c654
Bug 1357490: Part 2: Run browser xpcshell tests in both in-process and OOP modes. r=aswan
...
MozReview-Commit-ID: 1ogotK4j3cy
2017-05-29 14:10:27 -07:00
Gijs Kruitbosch
90cac15204
Bug 1370967 - close containing popup when clicking a non-popup browser action, r=mixedpuppy
...
MozReview-Commit-ID: HkdV5FUPnDV
2017-07-03 17:14:58 +01:00
Tomislav Jovanovic
430db70aab
Bug 1351638 - Fix intermittents caused by menus_commands test r=kmag
...
MozReview-Commit-ID: FsU2MHL0c9o
2017-07-04 03:12:34 +02:00
Sebastian Hengst
3b79a3d804
Backed out changeset 4d0faee8c200 (bug 1370967) for eslint failure: missing comma at browser_ext_browserAction_popup.js:132. r=backout
2017-07-05 22:34:23 +02:00
Gijs Kruitbosch
b6b47745de
Bug 1370967 - close containing popup when clicking a non-popup browser action, r=mixedpuppy
...
MozReview-Commit-ID: HkdV5FUPnDV
2017-07-03 17:14:58 +01:00
Gijs Kruitbosch
e4d7874f9d
Bug 1378194 - ordering of buttons in browser_ext_themes_icons.js matters; don't append bookmarks menu button at the end, r=jaws
...
MozReview-Commit-ID: 8WOsV4u9DJY
2017-07-04 22:51:36 +01:00
Phil Ringnalda
daac6ceed1
Bug 1377358 followup, pacify eslint
...
MozReview-Commit-ID: 3iraxMxLxXK
2017-07-01 14:39:19 -07:00
Ursula Sarracini
372bbc20f2
Bug 1377358 - browser/components/extensions/test/browser/browser_ext_tabs_onUpdated.js fails when Activity Stream is enabled. r=kmag
...
MozReview-Commit-ID: G7Po0FIzxuw
2017-07-01 13:43:57 -07:00
Wes Kocher
b987e71f1d
Backed out changeset c3f7c2d4303f (bug 1321544) for frequent failures in browser_ext_contextMenus_icons.js a=backout
2017-06-30 11:36:34 -07:00