This commit is contained in:
roc+@cs.cmu.edu 2007-11-15 17:32:26 -08:00
Родитель d04a947f1c
Коммит e9d5bc5e30
3 изменённых файлов: 36 добавлений и 0 удалений

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

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body style="font-family: monospace;">
<div style="width: 3ch; border: 1px solid orange;">
<span>a</span> <span>b</span> <span id="c">c</span>
</div>
</body>
</html>

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

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var c = document.getElementById("c");
var space = document.createTextNode(" ");
c.parentNode.insertBefore(space, c);
}
</script>
</head>
<body style="font-family: monospace;" onload="boom();">
<div style="width: 3ch; border: 1px solid orange;">
<span>a</span> <span>b</span><span id="c">c</span>
</div>
</body>
</html>

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

@ -434,6 +434,7 @@ fails == 386310-1d.html 386310-1-ref.html
== 395331-1.xml 395331-1-ref.xml
== 396286-1.html about:blank # crash test
== 397428-1.html 397428-1-ref.html
== 398101-1.html 398101-1-ref.html
== 398289-1.html 398289-1-ref.html
== 398144-1.html 398144-1-ref.html
== 398797-1a.html 398797-1-ref.html