blob: 2ff652e790e9c09c4f76fd3b86a7d5c2526fa274 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<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>
|