Bug 603510 - add crashtest. a=NPOTB

This commit is contained in:
Jesse Ruderman 2010-10-15 13:44:38 -07:00
Родитель 1a2999c622
Коммит 4ce8939f09
2 изменённых файлов: 24 добавлений и 0 удалений

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

@ -0,0 +1,23 @@
<!DOCTYPE html>
<script>
function boom()
{
var r = document.documentElement;
while (r.firstChild)
r.removeChild(r.firstChild);
var a = document.createTextNode("a");
r.appendChild(a);
a.splitText(0);
a.splitText(0);
document.documentElement.offsetHeight;
r.appendChild(document.createTextNode("b"));
}
window.addEventListener("load", boom, false);
</script>

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

@ -340,3 +340,4 @@ load 590404.html
load 591141.html
asserts(0-1) load 592118.html
load 603490-1.html
load 603510-1.html