This commit is contained in:
Jesse Ruderman 2010-10-11 09:55:22 -07:00
Родитель 009b1f8bdd
Коммит 74ea0a81b4
2 изменённых файлов: 22 добавлений и 0 удалений

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

@ -0,0 +1,21 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom() {
var ns = document.createElementNS("http://www.w3.org/1999/xhtml", "script");
var nt = document.createTextNode("bang();");
ns.appendChild(nt);
document.getElementById("v").appendChild(ns);
}
function bang()
{
var scriptElement = document.getElementById("v").lastElementChild;
"" + scriptElement;
}
</script>
</head>
<body onload="boom();"><div id="v"></div></body>
</html>

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

@ -19,6 +19,7 @@ load 471366-1.html
load 475185-1.html
load 475291-1.html
load 503286-1.html
load 512815-1.html
load 545291-1.html
load 558979.html
load 582649.html