This commit is contained in:
jruderman@hmc.edu 2007-12-15 20:55:06 -08:00
Родитель 1cb36c2b59
Коммит f1e1824f10
2 изменённых файлов: 29 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,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>

Просмотреть файл

@ -1,3 +1,4 @@
load 363696-1.xul
load 363696-2.html
load 363696-3.html
load 370940-1.html