Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/set-documentElement-innerHTML-when-embed-in-designMode-has-focus.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
"use strict";
addEventListener("DOMContentLoaded", () => {
document.designMode = "on";
document.querySelector("embed").focus();
document.documentElement.innerHTML = "";
}, {once: true});
</script>
</head>
<body>
<embed>
</body>
</html>