Files
ladybird/Tests/LibWeb/Text/data/iframe-replace-push-then-back.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>