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-in-head-editing-host-after-body-removed.html - WPT Dashboard Interop Dashboard
<html><head><script type="text/javascript">
function boom()
{
var dE = document.documentElement;
var head = document.getElementsByTagName("head")[0];
dE.removeChild(document.body);
dE.contentEditable = "true";
dE.focus();
dE.contentEditable = "false";
head.focus();
head.contentEditable = "true";
try {
document.execCommand("selectAll", false, "");
} catch(e) {
}
}
</script></head><body onload="boom();"></body></html>