mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
23 lines
331 B
HTML
23 lines
331 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
|
|
<style>
|
|
html:first-line { }
|
|
body { direction: rtl; float: right; }
|
|
</style>
|
|
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.body.style.cssFloat = "none";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="setTimeout(boom, 30);">
|
|
<p>Hello world</p>
|
|
</body>
|
|
|
|
</html>
|