mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
Bug 1650089 - Part 7: Avoid process-switching in devtools test to keep it passing, r=nchevobbe
Differential Revision: https://phabricator.services.mozilla.com/D121286
This commit is contained in:
parent
86eb6e4a0b
commit
d9a5f40263
@ -3,8 +3,13 @@
|
||||
|
||||
"use strict";
|
||||
|
||||
const ORIGINAL_URL = "about:home";
|
||||
const OTHER_URL = "about:blank";
|
||||
// FIXME(bug 1709267): This test used to test navigations between `about:home`
|
||||
// and `about:blank`. Some process switch changes during Fission (bug 1650089)
|
||||
// meant that this navigation now leads to a process switch. Unfortunately,
|
||||
// about:debugging is not resillient to process switches, so the URLs were
|
||||
// changed to both load within the same content process.
|
||||
const ORIGINAL_URL = "http://example.com/document-builder.sjs?html=page1";
|
||||
const OTHER_URL = "http://example.com/document-builder.sjs?html=page2";
|
||||
|
||||
async function waitForUrl(url, toolbox, browserTab, win) {
|
||||
const {
|
||||
|
Loading…
Reference in New Issue
Block a user