Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/selectall-during-setting-innerHTML-of-documentElement.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
"use strict";
addEventListener("DOMContentLoaded", () => {
const script = document.querySelector("script");
script.appendChild(
document.createElement("iframe")
);
document.documentElement.innerHTML =
`<body contenteditable><iframe onload="document.execCommand('selectAll')"></iframe>`;
}, {once: true});
</script>
</head>
<body>
<div contenteditable></div>
</body>
</html>