mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
10 lines
210 B
HTML
10 lines
210 B
HTML
<script>
|
|
window.history.pushState({}, '', '');
|
|
|
|
window.addEventListener('popstate', (e) => {
|
|
parent.postMessage('popstate event from iframe', '*');
|
|
});
|
|
|
|
window.history.back();
|
|
</script>
|