mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-23 10:29:05 +00:00
18 lines
375 B
Plaintext
18 lines
375 B
Plaintext
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait">
|
||
|
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
document.getElementById("l").value="פיל\n";
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
|
||
|
window.addEventListener("load", function(){setTimeout(boom, 30)}, 0);
|
||
|
|
||
|
</script>
|
||
|
<hbox dir="rtl">
|
||
|
<label id="l" />
|
||
|
</hbox>
|
||
|
</window>
|