forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1180525. Run callbacks whose window is no longer current as long …
…as its document is the active document in the browsing context. r=bholley The distinction only matters when document.open() makes a different window current without changing the active document.
- Loading branch information
Showing
9 changed files
with
53 additions
and
43 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
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,21 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>Test for callback invocation for a callback that comes from a | ||
no-longer-current window that still has an active document.</title> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<div id="log"></div> | ||
<iframe srcdoc='<script>function f() { parent.callCount++; }</script>'></iframe> | ||
<script> | ||
var callCount = 0; | ||
var t = async_test("A test of callback invocation in a no-longer-current window with a still-active document"); | ||
window.addEventListener("load", t.step_func_done(function() { | ||
var d = document.createElement("div"); | ||
d.addEventListener("xyz", frames[0].f); | ||
frames[0].document.open(); | ||
frames[0].document.write("All gone"); | ||
frames[0].document.close(); | ||
d.dispatchEvent(new Event("xyz")); | ||
assert_equals(callCount, 1, "Callback should have been called"); | ||
})); | ||
</script> |
15 changes: 0 additions & 15 deletions
15
...web-platform/meta/html/dom/dynamic-markup-insertion/opening-the-input-stream/016.html.ini
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
testing/web-platform/meta/old-tests/submission/Opera/script_scheduling/094.html.ini
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
testing/web-platform/meta/old-tests/submission/Opera/script_scheduling/101.html.ini
This file was deleted.
Oops, something went wrong.
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