Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/remove-document-element-of-iframe-having-style-content.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
function boom() {
const iframe = document.querySelector("iframe");
const win = iframe.contentWindow;
win.document.designMode = 'on';
iframe.style.content = "'m'";
win.document.removeChild(win.document.documentElement)
}
</script>
</head>
<body onload="boom();"><iframe srcdoc=""></iframe></body>
</html>