Bug 538207 and bug 538210. Add crashtests.

This commit is contained in:
Timothy Nikkel 2010-01-21 16:06:35 -06:00
Родитель 86aba3d43e
Коммит 91af371a02
3 изменённых файлов: 32 добавлений и 0 удалений

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

@ -0,0 +1,14 @@
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:m="http://www.w3.org/1998/Math/MathML">
<head>
<script>
function boom()
{
document.getElementById("iframe").appendChild(document.createElement("span"));
document.getElementById("mrow").appendChild(document.createElement("span"));
}
</script>
</head>
<body onload="boom();"><m:mrow id="mrow"><iframe id="iframe"/></m:mrow></body>
</html>

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

@ -0,0 +1,16 @@
<html>
<head>
<script>
function boom()
{
var frameset = document.getElementsByTagName("frameset")[0]
var oldFrame = frameset.firstChild;
var newFrame = document.createElementNS("http://www.w3.org/1999/xhtml", "frame");
frameset.appendChild(newFrame);
frameset.removeChild(oldFrame);
}
</script>
</head>
<frameset onload="boom()"><frame></frame></frameset>
</html>

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

@ -283,5 +283,7 @@ load 537059-1.xhtml
load 537141-1.xhtml
load 537562-1.xhtml
load 538082-1.xul
load 538207-1.xhtml
load 538210-1.html
load 541869-1.xhtml
load 541869-2.html