Files
ladybird/Tests/LibWeb/Text/data/iframe-popstate-event.html
Aliaksandr Kalenik ee3dd7977d LibWeb: Add popstate event support
It is going to be useful in writing tests for History API.
2024-04-11 21:25:06 +02:00

10 lines
210 B
HTML

<script>
window.history.pushState({}, '', '');
window.addEventListener('popstate', (e) => {
parent.postMessage('popstate event from iframe', '*');
});
window.history.back();
</script>