Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Detect a soft navigation triggered by an external classic script.</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>
testSoftNavigation({
testName: "Detect a soft navigation triggered from external classic script",
pushState: (url) => {
const script = document.createElement("script");
script.src = "resources/history_push.js";
document.body.appendChild(script);
},
});
</script>
</body>
</html>