mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
33 lines
486 B
HTML
33 lines
486 B
HTML
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
|
||
|
.a:first-letter { float: right; }
|
||
|
|
||
|
</style>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
document.body.style.overflow = "auto";
|
||
|
document.body.className = "a";
|
||
|
|
||
|
setTimeout(boom2, 30);
|
||
|
}
|
||
|
|
||
|
function boom2()
|
||
|
{
|
||
|
var span = document.createElement("span");
|
||
|
document.body.appendChild(span);
|
||
|
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();">ﺷ
|
||
|
</body>
|
||
|
|
||
|
</html>
|