Joel Maher
5bf232d7af
Bug 1776212 - cleanup e10s in manifest conditions for bc/dt. r=aryx,necko-reviewers,extension-reviewers,preferences-reviewers,dragana,zombie
...
Differential Revision: https://phabricator.services.mozilla.com/D150127
2022-06-23 17:49:07 +00:00
Nicolas Chevobbe
6d089546e6
Bug 1774809 - [devtools] Fix intermittent in browser_zoom.js , r=jdescottes.
...
Wait for the devices to be loaded to prevent issue when closing RDM
Differential Revision: https://phabricator.services.mozilla.com/D149724
2022-06-21 05:11:17 +00:00
Nicolas Chevobbe
ba7decb9ac
Bug 1774622 - [devtools] Return Map from getDevices. r=jdescottes.
...
Differential Revision: https://phabricator.services.mozilla.com/D149595
2022-06-17 09:56:47 +00:00
Nicolas Chevobbe
d0ec19672d
Bug 1770899 - [devtools] Use RemoteSettings devtools-devices collection. r=jdescottes.
...
Differential Revision: https://phabricator.services.mozilla.com/D149405
2022-06-17 06:44:18 +00:00
Tetsuharu Ohzeki
bb8e1695cc
Bug 1508688 - Add `UNSAFE_` prefix to React deprecated lifecycle methods in devtools/client/responsive/. r=devtools-reviewers,nchevobbe
...
Differential Revision: https://phabricator.services.mozilla.com/D149482
2022-06-16 10:03:11 +00:00
Michael Ratcliffe
010e0b9179
Bug 1759914 - Clean up downloads after browser_screenshot_button.js r=devtools-reviewers,jdescottes
...
Differential Revision: https://phabricator.services.mozilla.com/D148151
2022-06-03 09:14:26 +00:00
Michael Ratcliffe
3133e874e5
Bug 1771608 - Eliminate mozilla/reject-osfile eslint warning in devTools code r=devtools-reviewers,perftest-reviewers,jdescottes,sparky
...
## Removed Some Osfile.jsm and ChromeUtils Dependencies
```diff
- const { OS } = require("resource://gre/modules/osfile.jsm");
And / Or
- const ChromeUtils = require("ChromeUtils");
```
- devtools/client/memory/actions/io.js
- devtools/client/memory/utils.js
- devtools/client/netmonitor/src/har/har-menu-utils.js
- devtools/client/responsive/test/browser/browser_screenshot_button.js
- devtools/client/shared/remote-debugging/adb/adb-binary.js
- devtools/client/shared/screenshot.js
- devtools/client/styleeditor/StyleEditorUI.jsm
- devtools/client/styleeditor/StyleSheetEditor.jsm
- devtools/client/webconsole/components/Input/JSTerm.js
- devtools/client/webconsole/test/browser/stub-generator-helpers.js
- devtools/server/actors/heap-snapshot-file.js
- devtools/server/actors/storage.js
- devtools/server/tests/xpcshell/test_MemoryActor_saveHeapSnapshot_01.js
- devtools/server/tests/xpcshell/test_MemoryActor_saveHeapSnapshot_02.js
- devtools/server/tests/xpcshell/test_MemoryActor_saveHeapSnapshot_03.js
- devtools/shared/DevToolsUtils.js
- devtools/shared/heapsnapshot/HeapSnapshotFileUtils.js
- devtools/shared/tests/xpcshell/test_fetch-file.js
- testing/talos/talos/tests/devtools/addon/content/tests/toolbox/screenshot.js
## IOUtils.read()
```diff
- OS.File.read(path);
+ IOUtils.read(path);
```
- devtools/client/aboutdebugging/test/browser/helper-real-usb.js
- devtools/client/netmonitor/src/har/har-menu-utils.js
- devtools/client/shared/remote-debugging/adb/adb-binary.js
- devtools/client/styleeditor/StyleSheetEditor.jsm
- devtools/client/webconsole/components/Input/JSTerm.js
- devtools/client/webconsole/test/browser/browser_jsterm_file_load_save_keyboard_shortcut.js
- devtools/client/webconsole/test/browser/browser_webconsole_context_menu_export_console_output.js
- devtools/shared/DevToolsUtils.js
## IOUtils.write()
```diff
- OS.File.writeAtomic(filePath, fileContent);
+ IOUtils.write(filePath, fileContent);
```
- devtools/client/webconsole/test/browser/stub-generator-helpers.js
- devtools/shared/DevToolsUtils.js
- devtools/shared/tests/xpcshell/test_fetch-file.js
## PathUtils.split()
```diff
- OS.Path.split(path);
+ PathUtils.split(path);
```
- devtools/client/styleeditor/StyleSheetEditor.jsm
## PathUtils.join()
```diff
- OS.Path.join(path, filename);
+ PathUtils.join(path, filename);
```
NOTE: If `filename` is an absolute path then `OS.Path` will ignore `path` and use `filename` but `PathUtils` will try to concatenate both paths. If filename can be an absolute path we need to use `PathUtils.isAbsolute()` and `PathUtils.joinRelative()` to make our desired behaviour explicit.
- devtools/client/debugger/test/mochitest/browser_dbg-chrome-create.js
- devtools/client/shared/remote-debugging/adb/adb-binary.js
- devtools/client/styleeditor/StyleSheetEditor.jsm
- devtools/shared/heapsnapshot/HeapSnapshotFileUtils.js
## PathUtils.isAbsolute() and PathUtils.joinRelative()
```diff
- filename = OS.Path.join(path, filename);
+ filename = PathUtils.isAbsolute(filename)
+ ? filename
+ : PathUtils.joinRelative(path, filename);
```
- devtools/client/shared/screenshot.js
## IOUtils.remove()
```diff
- OS.File.remove(filePath);
+ IOUtils.remove(filePath);
```
- devtools/client/framework/test/browser_toolbox_screenshot_tool.js
- devtools/client/responsive/test/browser/browser_screenshot_button.js
- devtools/client/responsive/test/browser/browser_screenshot_button_warning.js
- devtools/client/shared/test/shared-head.js
- devtools/client/webconsole/test/browser/browser_console_screenshot.js
- devtools/client/webconsole/test/browser/browser_jsterm_screenshot_command_file.js
- devtools/client/webconsole/test/browser/browser_jsterm_screenshot_command_fixed_header.js
- devtools/client/webconsole/test/browser/browser_jsterm_screenshot_command_selector.js
- testing/talos/talos/tests/devtools/addon/content/tests/toolbox/screenshot.js
## PathUtils.toFileURI()
```diff
- OS.Path.toFileURI(filePath);
+ PathUtils.toFileURI(filePath);
```
- devtools/client/framework/test/browser_toolbox_screenshot_tool.js
- devtools/client/responsive/test/browser/browser_screenshot_button.js
- devtools/client/shared/test/shared-head.js
- devtools/client/webconsole/test/browser/browser_console_screenshot.js
- devtools/client/webconsole/test/browser/browser_jsterm_screenshot_command_file.js
- devtools/client/webconsole/test/browser/browser_jsterm_screenshot_command_fixed_header.js
- devtools/client/webconsole/test/browser/browser_jsterm_screenshot_command_selector.js
## PathUtils.filename()
```diff
- OS.Path.basename(path),
+ PathUtils.filename(path),
```
- devtools/client/memory/actions/io.js
- devtools/client/memory/utils.js
- devtools/client/styleeditor/StyleEditorUI.jsm
- devtools/client/styleeditor/StyleSheetEditor.jsm
## IOUtils.copy()
```diff
- OS.File.copy(path, dest);
+ IOUtils.copy(path, dest);
```
- devtools/client/memory/actions/io.js
## IOUtils.stat()
```diff
- OS.File.stat(filePath);
+ IOUtils.stat(filePath);
```
The objects that these `stat()` versions return differ from one another. This hasn't made much difference to the codebase but our changed usage is included here for completeness:
```diff
- this._fileModDate = info.lastModificationDate.getTime();
+ this._fileModDate = info.lastModified;
```
- devtools/client/memory/test/browser/browser_memory_transferHeapSnapshot_e10s_01.js
- devtools/client/memory/test/xpcshell/head.js
- devtools/client/memory/test/xpcshell/test_action-export-snapshot.js
- devtools/client/styleeditor/StyleSheetEditor.jsm
- devtools/server/actors/heap-snapshot-file.js
- devtools/server/tests/xpcshell/test_MemoryActor_saveHeapSnapshot_01.js
- devtools/server/tests/xpcshell/test_MemoryActor_saveHeapSnapshot_02.js
- devtools/server/tests/xpcshell/test_MemoryActor_saveHeapSnapshot_03.js
- devtools/shared/heapsnapshot/HeapSnapshotFileUtils.js
## IOUtils.setPermissions
```diff
- OS.File.setPermissions(filePath, { unixMode: 0o744 });
+ IOUtils.setPermissions(filePath, 0o744);
```
- devtools/client/shared/remote-debugging/adb/adb-binary.js
## IOUtils.makeDirectory
```diff
- OS.File.makeDir(path);
+ IOUtils.makeDirectory(path);
```
- devtools/client/shared/remote-debugging/adb/adb-binary.js
## IOUtils.exists
```diff
- OS.File.exists(path);
+ IOUtils.exists(path);
```
- devtools/client/shared/remote-debugging/adb/adb-binary.js
- devtools/client/shared/screenshot.js
- devtools/client/webconsole/test/browser/browser_jsterm_file_load_save_keyboard_shortcut.js
- devtools/client/webconsole/test/browser/browser_webconsole_context_menu_export_console_output.js
## PathUtils.profileDir, PathUtils.localProfileDir and PathUtils.tempDir
```diff
- const profileDir = OS.Constants.Path.profileDir;
+ const profileDir = PathUtils.profileDir;
```
We can reduce reliance on `Osfile.jsm` in another bug bug this is a small step in that direction.
- devtools/client/shared/remote-debugging/adb/adb-binary.js
- devtools/server/actors/storage.js
- devtools/shared/heapsnapshot/HeapSnapshotFileUtils.js
## IOUtils.getChildren(storagePath)
`IOUtils` does not have a direct equivalent of `OS.File.DirectoryIterator()` so we need to iterate more explicitely using `IOUtils.getChildren()`.
```diff
- async findStorageTypePaths(storagePath) {
- const iterator = new OS.File.DirectoryIterator(storagePath);
- const typePaths = [];
-
- await iterator.forEach(entry => {
- if (entry.isDir) {
- typePaths.push(entry.path);
- }
- });
-
- iterator.close();
- return typePaths;
- }
+ async findStorageTypePaths(storagePath) {
+ const children = await IOUtils.getChildren(storagePath);
+ const typePaths = [];
+
+ for (const path of children) {
+ const exists = await IOUtils.exists(path);
+ if (!exists) {
+ continue;
+ }
+
+ const stats = await IOUtils.stat(path);
+ if (stats.type === "directory") {
+ typePaths.push(path);
+ }
+ }
+
+ return typePaths;
+ }
```
- devtools/server/actors/storage.js
## Misc
Made `IOUtils` and `PathUtils` available to DevTools modules.
```diff
HeapSnapshot,
+ IOUtils,
L10nRegistry,
Localization,
NamedNodeMap,
NodeFilter,
+ PathUtils,
StructuredCloneHolder,
TelemetryStopwatch,
```
- devtools/shared/loader/builtin-modules.js
Differential Revision: https://phabricator.services.mozilla.com/D147589
2022-06-02 21:13:56 +00:00
Julian Descottes
0f4eade0f1
Bug 1770882 - [devtools] Add a tooltip to the throttling menu button to show profile details r=nchevobbe,flod
...
The characteristics of the throttling profile are not really accessible anywhere.
At least having them in the button title can help.
I started reorganizing throttling profiles as instances of a ThrottlingProfile base class, because
that should be useful when we implement custom profiles
Differential Revision: https://phabricator.services.mozilla.com/D147131
2022-05-24 13:10:01 +00:00
Nicolas Chevobbe
285ff88a80
Bug 1769973 - [devtools] Localize Device headers in Settings modal. r=bomsy.
...
We already have translation strings in `device.properties`, so we can use them.
String for `custom` type was missing, so we add it.
Assertions are added in test to check that we do have the expected labels in the UI.
Differential Revision: https://phabricator.services.mozilla.com/D146784
2022-05-20 12:54:38 +00:00
Mark Banner
3924c8914b
Bug 1769569 - Automatically replace Components.* with C* in sjs files. r=Gijs
...
Differential Revision: https://phabricator.services.mozilla.com/D146451
2022-05-18 08:13:19 +00:00
Sebastian Hengst
c552340e0c
Backed out 5 changesets (bug 1769569) for causing devtools' browser/browser_page_redirection.js to fail. CLOSED TREE
...
Backed out changeset 66a42eb3a366 (bug 1769569)
Backed out changeset d3cc9629cd9a (bug 1769569)
Backed out changeset edcd3dade079 (bug 1769569)
Backed out changeset 29d8dd058b7a (bug 1769569)
Backed out changeset 1aed34fdf2d3 (bug 1769569)
2022-05-17 19:49:17 +02:00
Mark Banner
4acbb4ff59
Bug 1769569 - Automatically replace Components.* with C* in sjs files. r=Gijs
...
Differential Revision: https://phabricator.services.mozilla.com/D146451
2022-05-17 16:50:33 +00:00
Emilio Cobos Álvarez
79f3fe026d
Bug 1759962 - Don't return the DPI override in devicePixelRatio to privileged code. r=nchevobbe,webdriver-reviewers
...
Chrome code should be able to rely on CSS pixel * devicePixelRatio =
device pixel.
Chrome code that cares about the override should use
BrowsingContext.overrideDPPX. We were exposing the no-override value in
WindowUtils but that's unneeded now.
Differential Revision: https://phabricator.services.mozilla.com/D141323
2022-03-23 17:03:04 +00:00
Alexandre Poirot
132536a105
Bug 1759822 - [devtools] Use shared waitUntilScreenshot method. r=jdescottes
...
Differential Revision: https://phabricator.services.mozilla.com/D141191
2022-03-16 19:11:58 +00:00
Alexandre Poirot
a226f04b9d
Bug 1759741 - [devtools] Remove shared-redux-head being redundant with shared-head.js r=jdescottes
...
Differential Revision: https://phabricator.services.mozilla.com/D141139
2022-03-16 19:11:57 +00:00
Julian Descottes
5bb2a7a008
Bug 1737387 - [devtools] Add option to wait for devices list in openRDM r=ochameau
...
Depends on D141021
Differential Revision: https://phabricator.services.mozilla.com/D141088
2022-03-15 23:22:23 +00:00
Julian Descottes
7708693811
Bug 1737387 - [devtools] Destroy the RDM frame before disconnecting it from the parent document r=ochameau
...
Depends on D140959
Differential Revision: https://phabricator.services.mozilla.com/D141021
2022-03-15 13:06:25 +00:00
Julian Descottes
c07be8b65b
Bug 1737387 - [devtools] Use shared helpers to open/close RDM in tests r=ochameau
...
Differential Revision: https://phabricator.services.mozilla.com/D140959
2022-03-15 13:06:25 +00:00
Nicolas Chevobbe
72a01fca06
Bug 1741811 - [devtools] Make watchTargets take a single object param. r=ochameau.
...
Differential Revision: https://phabricator.services.mozilla.com/D131755
2021-11-23 13:23:35 +00:00
Narcis Beleuzu
81698c54eb
Backed out changeset 9dfd5e6601a1 (bug 1505304) as requested by nchevobbe
2021-11-23 14:56:24 +02:00
Nicolas Chevobbe
5d77281fc2
Bug 1505304 - [devtools] Make watchTargets take a single object param. r=ochameau.
...
Differential Revision: https://phabricator.services.mozilla.com/D131755
2021-11-23 12:39:19 +00:00
Andreea Pavel
93376ab546
Bug 1717330 - disable browser_touch_event_iframes.js for frequent failures r?#intermittent-reviewers
...
Differential Revision: https://phabricator.services.mozilla.com/D131574
2021-11-19 02:14:06 +00:00
Alexandre Poirot
487d9677f3
Bug 1740292 - [devtools] Stop calling target front attach method. r=nchevobbe
...
Previous patches made attach method become a no-op, so all these callsites can be removed.
Differential Revision: https://phabricator.services.mozilla.com/D130913
2021-11-18 10:57:01 +00:00
Julian Descottes
212faeb0c3
Bug 1741369 - [devtools] Update paths to loader files in devtools/ r=ochameau
...
Depends on D131216
Differential Revision: https://phabricator.services.mozilla.com/D131217
2021-11-17 12:43:26 +00:00
Hiroyuki Ikezoe
db5de169ad
Bug 1692708 - Add cancelScrollAnimation and use it in window_bug1369072.html and browser_scroll.js. r=botond
...
Both window_bug1369072.html and browser_scroll.js have a pattern something like;
1) Call synthesizeKey to scroll an element
2) Wait a scroll event
3) Test something
4) (Re)set the scroll position to (0, 0) by calling Element.scrollTop and
Element.scrollLeft or scrollTo.
With the new transmogrification the step 4) will not reset the scroll position
if there's an on-going scroll animation in APZ triggered by the synthesizeKey.
To avoid the situation where there's an on-going animation at the step 4), we
destroy the corresponding scrollable frame and reconstruct it so that it
clobbers the animation.
Differential Revision: https://phabricator.services.mozilla.com/D130852
2021-11-12 07:54:17 +00:00
Julian Descottes
d99fe3e573
Bug 1735143 - Ensure various tests within devtools are https-first compliant r=bomsy
...
The following test suites are green in https-first with this patch:
devtools/client/memory/test/browser/browser.ini
devtools/client/responsive/test/browser/browser.ini
devtools/client/shared/test/browser.ini
devtools/client/styleeditor/test/browser.ini
devtools/shared/commands/resource/tests/browser.ini
Differential Revision: https://phabricator.services.mozilla.com/D128082
2021-10-13 09:41:21 +00:00
Emilio Cobos Álvarez
4f8856c545
Bug 1730503 - Make RDM force Android-style scrollbars better. r=mstange,devtools-backward-compat-reviewers,nchevobbe
...
There are a few bits that still don't work with this patch but will with the
following patches.
Differential Revision: https://phabricator.services.mozilla.com/D128083
2021-10-12 09:21:17 +00:00
Julian Descottes
7d07cc475f
Bug 1726288 - [devtools] Wait for browser reload in RDM when reload was triggered by the server r=nchevobbe
...
The initial implementation was missing that the server could also decide to reload the browser
Differential Revision: https://phabricator.services.mozilla.com/D127462
2021-10-05 08:33:42 +00:00
Jan Odvarko
ff42b6b16c
Bug 1723925 - [devtools] Add documentation to update the simulated-devices list for RDM r=jdescottes
...
Differential Revision: https://phabricator.services.mozilla.com/D127419
2021-10-05 07:47:18 +00:00
Julian Descottes
c526fc9eca
Bug 1726288 - [devtools] Wait for devtools navigation when changing the device in RDM tests r=nchevobbe
...
Depends on D124063
Differential Revision: https://phabricator.services.mozilla.com/D126822
2021-09-30 09:12:11 +00:00
Julian Descottes
4f9e1a4081
Bug 1726288 - [devtools] Use shared navigation helpers for all reload actions in RDM mochitests r=nchevobbe
...
Depends on D126179
Differential Revision: https://phabricator.services.mozilla.com/D124063
2021-09-30 09:12:10 +00:00
Christoph Kerschbaumer
a4d82d30dc
Bug 1733070: Update tests within devtools/client/responsive/test/ to work with https-first enabled r=jdescottes
...
Differential Revision: https://phabricator.services.mozilla.com/D126897
2021-09-29 15:27:29 +00:00
Nicolas Chevobbe
f1c59fa2b8
Bug 1688445 - [devtools] Fix browser/browser_window_close.js intermittent. r=jdescottes.
...
The test seemed to fail because the page was already loaded when we started
awaiting for `BrowserTestUtils.browserLoaded`.
This patch removes it and instead pass an `url` param to `BrowserTestUtils.waitForNewWindow`,
which means we'll wait for the page to be loaded.
Differential Revision: https://phabricator.services.mozilla.com/D126063
2021-09-20 08:27:56 +00:00
Neil Deakin
a62618baa7
Bug 1690390, change appendNotification to take a smaller number of arguments: the string type value, a dictionary containing the notification details, and the button list, r=mstriemer
...
Differential Revision: https://phabricator.services.mozilla.com/D107755
2021-09-17 09:04:59 +00:00
Narcis Beleuzu
72152613c6
Backed out 3 changesets (bug 1690390) for mochitest failures on test_notificationbox.xhtml . CLOSED TREE
...
Backed out changeset e6404b7424cd (bug 1690390)
Backed out changeset a161177099af (bug 1690390)
Backed out changeset cc7e02d3d418 (bug 1690390)
2021-09-16 23:41:21 +03:00
Neil Deakin
82501df9f7
Bug 1690390, change appendNotification to take a smaller number of arguments: the string type value, a dictionary containing the notification details, and the button list, r=mstriemer
...
Differential Revision: https://phabricator.services.mozilla.com/D107755
2021-09-16 19:11:17 +00:00
Julian Descottes
4759491e32
Bug 1725976 - [devtools] Wait for spawnViewportTask to resolve in browser_target_blank.js r=bomsy
...
Differential Revision: https://phabricator.services.mozilla.com/D124439
2021-09-06 09:45:43 +00:00
Julian Descottes
df5701fd64
Bug 1688067 - [devtools] Repurpose refreshTab as reloadBrowser and use in browser_toolbox_error_count_reset_on_navigation.js r=ochameau
...
Differential Revision: https://phabricator.services.mozilla.com/D124168
2021-09-01 19:24:24 +00:00
Julian Descottes
c43a9450b1
Bug 1728138 - [devtools] Reuse navigateTo in RDM test helper load r=ochameau
...
Differential Revision: https://phabricator.services.mozilla.com/D124029
2021-08-31 12:24:31 +00:00
Julian Descottes
537eea5819
Bug 1727506 - [devtools] Make DevTools shared-head navigateTo reusable for RDM r=ochameau
...
depends on D123326
This changeset introduces a single `wait` function which should work for all DevTools setups.
For the provided browser, it will check if there is a Toolbox or a RDM UI opened. Then it will start watching for Toolbox-specific or RDM-specific navigation events (incl panels etc...), as well as for the reload of the corresponding Commands instances (toolbox and RDM UI might each have one). It also extracts the "target switching" check to a separate "watch" helper so that it doesn't get mixed with the rest of the logic.
Differential Revision: https://phabricator.services.mozilla.com/D123604
2021-08-30 15:58:52 +00:00
Alexandre Poirot
3b693fede5
Bug 1727323 - [devtools] Enable bfcache in parent in tests that have been fixed thanks to server targets. r=bomsy
...
All these tests most likely have been fixed with the enabling of server targets.
Because bfcache in parent was introducing more cross process navigations,
being initiated from the server, having the support of server targets was uterly
important to support bfcacheInParent.
Differential Revision: https://phabricator.services.mozilla.com/D123448
2021-08-25 17:16:27 +00:00
Julian Descottes
077a35b79f
Bug 1726240 - [devtools] Wait for target switching in RDM navigation helpers r=Honza
...
Wait for target available to be fully processed by responsive UI in tests
Differential Revision: https://phabricator.services.mozilla.com/D123326
2021-08-25 07:11:58 +00:00
Gijs Kruitbosch
021037e649
Bug 1724718 - do not rely on images that only exist on macOS in devtools tests and fix MenuItem dummy image, r=mtigley
...
Differential Revision: https://phabricator.services.mozilla.com/D122164
2021-08-11 12:50:38 +00:00
Nika Layzell
29295703f8
Bug 1715773 - Remove preloaded newtab process selection logic, r=mconley
...
Differential Revision: https://phabricator.services.mozilla.com/D121423
2021-08-03 15:17:07 +00:00
Nicolas Chevobbe
45f7114db0
Bug 1722714 - [devtools] Don't call restoreActorState from RDM client when target follow window global lifecycle. r=jdescottes.
...
The call to restoreActor state was inferring with the watcher setting up the configuration
on new documents, and was making browser_max_touchpoints and browser_touch_pointerevents
fail with server side target switching.
Differential Revision: https://phabricator.services.mozilla.com/D121533
2021-08-03 11:04:21 +00:00
Nicolas Chevobbe
6cd53a1071
Bug 1722462 - [devtools] Wait for dom-complete in waitForViewportLoad. r=ochameau
...
Depends on D121059
Differential Revision: https://phabricator.services.mozilla.com/D121071
2021-07-29 09:07:37 +00:00
Christoph Kerschbaumer
4a6250387f
Bug 1719272: Annotate failing browser/ tests to potentially enable https-first mode in Nightly r=webcompat-reviewers,denschub,webdriver-reviewers,preferences-reviewers,Gijs,whimboo
...
Differential Revision: https://phabricator.services.mozilla.com/D119177
2021-07-28 19:16:16 +00:00
Sandor Molnar
68cdec0548
Backed out changeset 7eb8945dd8e3 (bug 1719272) for causing bustages in gecko decision task. CLOSED TREE
2021-07-28 19:47:06 +03:00
Christoph Kerschbaumer
bb716f0701
Bug 1719272: Annotate failing browser/ tests to potentially enable https-first mode in Nightly r=webcompat-reviewers,denschub,webdriver-reviewers,preferences-reviewers,Gijs,whimboo
...
Differential Revision: https://phabricator.services.mozilla.com/D119177
2021-07-28 16:08:07 +00:00
Nicolas Chevobbe
38c85b13c1
Bug 1722665
- [devtools] Use reloadViewport helper for reloading page in RDM tests. r=ochameau.
...
Depends on D121058
Differential Revision: https://phabricator.services.mozilla.com/D121059
2021-07-28 12:04:01 +00:00