Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /soft-navigation-heuristics/popstate.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Detect simple soft navigation.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="resources/soft-navigation-helper.js"></script>
</head>
<body>
<a id=link>Click me!</a>
<main id=main>
</main>
<script>
// Push state twice, so that history.back() will trigger a popstate event,
// when the first push state is restored.
history.pushState({}, "", "foobar.html");
history.pushState({}, "", "another_one.html");
testSoftNavigation({
testName: "A soft navigation that uses a same-document initiated popstate"
+ " event is recognized by SoftNavigationHeuristics",
// Test already have a default clock which will call back(), we want
// "the event" that triggers navigation to be the popstate event.
eventListenerCb: () => history.back(),
registerRouteChange: (cb) => addEventListener('popstate', cb),
pushState: () => { },
// Although we will own the pushState, we need to set the expected URL
pushUrl: "foobar.html",
});
</script>
</body>
</html>