-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HTML: add test for history.state after document.open() (#12650)
For whatwg/html#3946.
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
html/webappapis/dynamic-markup-insertion/opening-the-input-stream/history-state.window.js
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,29 @@ | ||
async_test(t => { | ||
const iframe = document.body.appendChild(document.createElement("iframe")); | ||
t.add_cleanup(() => iframe.remove()); | ||
iframe.src = "/common/blank.html"; | ||
iframe.onload = t.step_func_done(() => { | ||
const win = iframe.contentWindow; | ||
const doc = iframe.contentDocument; | ||
assert_equals(win.history.state, null); | ||
win.history.replaceState("state", ""); | ||
assert_equals(win.history.state, "state"); | ||
assert_equals(doc.open(), doc); | ||
assert_equals(win.history.state, "state"); | ||
}); | ||
}, "history.state is kept by document.open()"); | ||
|
||
async_test(t => { | ||
const iframe = document.body.appendChild(document.createElement("iframe")); | ||
t.add_cleanup(() => iframe.remove()); | ||
iframe.src = "/common/blank.html"; | ||
iframe.onload = t.step_func_done(() => { | ||
const win = iframe.contentWindow; | ||
const doc = iframe.contentDocument; | ||
assert_equals(win.history.state, null); | ||
win.history.replaceState("state", ""); | ||
assert_equals(win.history.state, "state"); | ||
assert_equals(doc.open("", "replace"), doc); | ||
assert_equals(win.history.state, "state"); | ||
}); | ||
}, "history.state is kept by document.open() (with historical replace parameter set)"); |