Add crashtests

This commit is contained in:
jruderman@hmc.edu 2008-02-25 20:44:03 -08:00
parent b3c6d94201
commit af0d2d7b0f
3 changed files with 71 additions and 0 deletions

View File

@ -0,0 +1,29 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boom()
{
var zz = document.getElementById("d").childNodes[0];
zz.parentNode.removeChild(zz);
var r = document.createRange();
r.setStart(zz, 0);
r.setEnd(zz, 0);
try {
r.insertNode(document.createTextNode('5'));
} catch (e) {
}
}
</script>
</head>
<body onload="boom()">
<div id="d">3</div>
</body>
</html>

View File

@ -0,0 +1,40 @@
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<head>
<script>
<![CDATA[
function funn()
{
var q = document.getElementById("q");
var start1 = document.getElementById("start1");
var end1 = document.getElementById("end1");
var start2 = q; // div
var end2 = q.previousSibling; // text node
var r = document.createRange();
r.setStart(start1, 0);
r.setEnd(end1, 0);
r.deleteContents();
// the offsets for start2 and end2 must be the same to trigger the assertion
var s = document.createRange();
s.setStart(start2, 0);
s.setEnd(end2, 0);
document.documentElement.removeAttribute("class");
}
]]>
</script>
</head>
<body onload="setTimeout(funn, 30)">
<div id="start1"></div>
<div id="t">X<div id="q">Y</div></div>
<div id="end1"></div>
</body>
</html>

View File

@ -5,6 +5,8 @@ load 326646-1.html
load 326778-1.html
load 326865-1.html
load 330925-1.xhtml
load 336381-1.xhtml
load 336715-1.xhtml
load 338391-1.xhtml
load 340733-1.html
load 343730-1.xhtml