32 lines
983 B
HTML
32 lines
983 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Detect a soft navigation triggered by an external module 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>
|
|
<main id=main>
|
|
<a id=link>Click me!</a>
|
|
</main>
|
|
<script>
|
|
const link = document.getElementById("link");
|
|
testSoftNavigation({
|
|
addContent: async () => {
|
|
await addImageToMain();
|
|
},
|
|
link: link,
|
|
pushState: async (url) => {
|
|
const script = document.createElement("script");
|
|
script.src = "resources/history_push.js";
|
|
script.type = "module";
|
|
document.body.appendChild(script);
|
|
},
|
|
test: "Detect a soft navigation triggered from external module script"});
|
|
</script>
|
|
</body>
|
|
</html>
|