mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
24 lines
384 B
HTML
24 lines
384 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var f = document.getElementById("f");
|
|
var w = f.contentWindow;
|
|
var d = w.document;
|
|
d.designMode = 'on';
|
|
var r = d.documentElement;
|
|
d.removeChild(r);
|
|
document.adoptNode(r);
|
|
f.parentNode.removeChild(f);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<iframe src="data:text/html,1" id="f"></iframe>
|
|
</body>
|
|
</html>
|