Add crashtest for bug 500847 (just filed)

This commit is contained in:
Jesse Ruderman 2009-06-26 17:26:31 -07:00
Родитель 3d3efc34e4
Коммит 9326647230
3 изменённых файлов: 22 добавлений и 0 удалений

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

@ -1,2 +1,3 @@
load 351236-1.html
skip-if(MOZ_WIDGET_TOOLKIT=="windows") load 428844-1.html # bug 471185
load removing-editable-xslt.html

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

@ -0,0 +1,4 @@
<?xml-stylesheet type="text/xsl" href="#a"?>
<html xmlns="http://www.w3.org/1999/xhtml" contenteditable="true">
<xsl:stylesheet version="1.0" id="a" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"/>
</html>

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

@ -0,0 +1,17 @@
<html class="reftest-wait">
<head>
<script>
function boom()
{
document.getElementById("i").src = "removing-editable-xslt-inner.xhtml";
setTimeout(function() {
document.body.removeChild(document.getElementById("i"));
document.documentElement.removeAttribute("class");
}, 0);
}
</script>
</head>
<body onload="boom();">
<iframe id="i"></iframe>
</body>
</html>