blob: ccaeb9643b1a912a6b4254dfb17cbea0def210cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<html class="reftest-wait">
<head>
<script>
var HTML_NS = "http://www.w3.org/1999/xhtml";
function boom1()
{
var newSpan = document.createElementNS(HTML_NS, "span");
document.body.appendChild(newSpan);
setTimeout(boom2, 30);
}
function boom2()
{
var newDiv = document.createElementNS(HTML_NS, "div");
document.getElementById("s").appendChild(newDiv);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom1, 30);">
<p>العربي</p>
<span id="s"></span><input><select></select><isindex><span></span>
</body>
</html>
|