mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
531 B
HTML
24 lines
531 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var w = document.getElementById("w");
|
|
var q = document.getElementById("q");
|
|
var e = document.createTextNode("");
|
|
document.documentElement.appendChild(document.body);
|
|
w.appendChild(e);
|
|
document.documentElement.offsetHeight;
|
|
w.removeChild(q);
|
|
document.documentElement.offsetHeight;
|
|
e.data += " x ";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"><span id="w">s‮<span id="q"></span><div></div><span>a</span></span></body>
|
|
</html>
|