mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
12 lines
265 B
HTML
12 lines
265 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
history.replaceState({ info: "replaced" }, "");
|
|
history.pushState({ info: "pushed" }, "", "/details");
|
|
|
|
window.addEventListener('popstate', () => {
|
|
parent.postMessage("PASS", '*');
|
|
});
|
|
|
|
history.back();
|
|
</script>
|