1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!DOCTYPE html> <html> <head> <script> function boom() { var f = document.getElementById("f"); var fw = f.contentWindow; fw.document.designMode = 'on'; f.style.content = "'m'"; fw.document.removeChild(fw.document.documentElement) } </script> </head> <body onload="boom();"><iframe id="f" src="data:text/html,"></iframe></body> </html>