mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision b'b728032f59a396243864b0f8584e7211e3632005'
This commit is contained in:
parent
ace9b32b1c
commit
df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions
|
@ -0,0 +1,34 @@
|
|||
<!doctype html>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<body>
|
||||
<script>
|
||||
async_test(t => {
|
||||
let start_length = history.length;
|
||||
|
||||
// Wait for after the load event so that the navigation doesn't get converted
|
||||
// into a replace navigation.
|
||||
window.onload = () => t.step_timeout(() => {
|
||||
navigation.navigate("#top");
|
||||
assert_equals(navigation.entries().length, 2);
|
||||
|
||||
let i = document.createElement("iframe");
|
||||
i.src = "/common/blank.html";
|
||||
document.body.appendChild(i);
|
||||
i.onload = () => t.step_timeout(() => {
|
||||
assert_equals(i.contentWindow.navigation.entries().length, 1);
|
||||
i.contentWindow.navigation.navigate("#fragment");
|
||||
assert_equals(i.contentWindow.navigation.entries().length, 2);
|
||||
i.contentWindow.navigation.back().committed.then(t.step_func(() => {
|
||||
assert_equals(i.contentWindow.navigation.entries().length, 2);
|
||||
assert_equals(i.contentWindow.navigation.currentEntry.index, 0);
|
||||
return i.contentWindow.navigation.forward().committed;
|
||||
})).then(t.step_func_done(() => {
|
||||
assert_equals(i.contentWindow.navigation.entries().length, 2);
|
||||
assert_equals(i.contentWindow.navigation.currentEntry.index, 1);
|
||||
}));
|
||||
}, 0);
|
||||
}, 0);
|
||||
}, "navigation.traverseTo() should work in an iframe that is not present in all history entries");
|
||||
</script>
|
||||
</body>
|
Loading…
Add table
Add a link
Reference in a new issue