mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
439 B
HTML
17 lines
439 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var div = document.getElementById("div")
|
|
div.appendChild(document.createTextNode(String.fromCharCode(0x076F) + String.fromCharCode(13) + String.fromCharCode(0x076F)));
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="setTimeout(boom, 10);">
|
|
<div style="text-transform: lowercase" id="div">ݯ ݯ</div>
|
|
</body>
|
|
</html> |