mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
347 B
HTML
19 lines
347 B
HTML
<!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>
|