-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1775925: Split up browser_onbeforeunload.js somewhat. r=nika
This splits the parent-triggered and child-triggered unload attempts into separate tests. I could also split the tests for each subframe level into separate tests, but let's see how this does for now. Differential Revision: https://phabricator.services.mozilla.com/D159228
- Loading branch information
Showing
4 changed files
with
97 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
"use strict"; | ||
|
||
// We need to test a lot of permutations here, and there isn't any sensible way | ||
// to split them up or run them faster. | ||
requestLongerTimeout(6); | ||
|
||
Services.scriptloader.loadSubScript( | ||
getRootDirectory(gTestPath) + "head_browser_onbeforeunload.js", | ||
this | ||
); | ||
|
||
add_task(async function() { | ||
await SpecialPowers.pushPrefEnv({ | ||
set: [["dom.require_user_interaction_for_beforeunload", false]], | ||
}); | ||
|
||
for (let actions of PERMUTATIONS) { | ||
info( | ||
`Testing frame actions: [${actions.map(action => | ||
ACTION_NAMES.get(action) | ||
)}]` | ||
); | ||
|
||
for (let startIdx = 0; startIdx < FRAMES.length; startIdx++) { | ||
info(`Testing content reload from frame ${startIdx}`); | ||
|
||
await doTest(actions, startIdx, (tab, frames) => { | ||
return SpecialPowers.spawn(frames[startIdx], [], () => { | ||
let eventLoopSpun = false; | ||
SpecialPowers.Services.tm.dispatchToMainThread(() => { | ||
eventLoopSpun = true; | ||
}); | ||
|
||
content.location.reload(); | ||
|
||
return { eventLoopSpun }; | ||
}); | ||
}); | ||
} | ||
} | ||
}); | ||
|
||
add_task(async function cleanup() { | ||
await TabPool.cleanup(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
"use strict"; | ||
|
||
// We need to test a lot of permutations here, and there isn't any sensible way | ||
// to split them up or run them faster. | ||
requestLongerTimeout(6); | ||
|
||
Services.scriptloader.loadSubScript( | ||
getRootDirectory(gTestPath) + "head_browser_onbeforeunload.js", | ||
this | ||
); | ||
|
||
add_task(async function() { | ||
await SpecialPowers.pushPrefEnv({ | ||
set: [["dom.require_user_interaction_for_beforeunload", false]], | ||
}); | ||
|
||
for (let actions of PERMUTATIONS) { | ||
info( | ||
`Testing frame actions: [${actions.map(action => | ||
ACTION_NAMES.get(action) | ||
)}]` | ||
); | ||
|
||
info(`Testing tab close from parent process`); | ||
await doTest(actions, -1, (tab, frames) => { | ||
let eventLoopSpun = false; | ||
Services.tm.dispatchToMainThread(() => { | ||
eventLoopSpun = true; | ||
}); | ||
|
||
BrowserTestUtils.removeTab(tab); | ||
|
||
let result = { eventLoopSpun }; | ||
|
||
// Make an extra couple of trips through the event loop to give us time | ||
// to process SpecialPowers.spawn responses before resolving. | ||
return new Promise(resolve => { | ||
executeSoon(() => { | ||
executeSoon(() => resolve(result)); | ||
}); | ||
}); | ||
}); | ||
} | ||
}); | ||
|
||
add_task(async function cleanup() { | ||
await TabPool.cleanup(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters