Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/non-replaced-elements/the-frameset-and-frame-elements/frame-no-frameset-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<script>
document.addEventListener("DOMContentLoaded", () => {
const a = new Document()
document.documentElement.appendChild(b)
try { b.contentWindow.history.replaceState(undefined, "𛵢") } catch (e) {}
b.contentWindow.history.go()
})
</script>