mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 07:03:29 +00:00
16 lines
396 B
HTML
16 lines
396 B
HTML
<!DOCTYPE html>
|
|
<script src="../../testing.js"></script>
|
|
|
|
<script id=navigation_currententrychange>
|
|
let currentEntryChanged = false;
|
|
|
|
navigation.addEventListener("currententrychange", () => {
|
|
currentEntryChanged = true;
|
|
});
|
|
|
|
// Doesn't fully navigate if same document.
|
|
location.href = location.href + "#1";
|
|
|
|
testing.expectEqual(true, currentEntryChanged);
|
|
</script>
|