Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!doctype html>
<script>
document.addEventListener("DOMContentLoaded", () => {
const a = new Document()
const b = a.createElementNS("http://www.w3.org/1999/xhtml", "frame")
document.documentElement.appendChild(b)
try { b.contentWindow.history.replaceState(undefined, "𛵢") } catch (e) {}
b.contentWindow.history.go()
})
</script>