mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-11 10:16:41 +00: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>
|