mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
389 B
HTML
26 lines
389 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
|
|
|
|
<head>
|
|
|
|
<script>
|
|
<![CDATA[
|
|
|
|
function init()
|
|
{
|
|
var k = document.getElementById("k");
|
|
k.parentNode.removeChild(k);
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
]]>
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="setTimeout(init, 30);">
|
|
|
|
<mo xmlns='http://www.w3.org/1998/Math/MathML'><mi id="k">z</mi></mo>
|
|
|
|
</body>
|
|
</html>
|