mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
352 B
HTML
20 lines
352 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var i = document.getElementById("i");
|
||
|
i.contentDocument.designMode = "on";
|
||
|
i.previousSibling.data += "x\n";
|
||
|
i.style.counterReset = "c";
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();">‮<iframe id="i" src="data:text/html,a"></body>
|
||
|
|
||
|
</html>
|