Source code
Revision control
Copy as Markdown
Other Tools
<!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>