зеркало из https://github.com/mozilla/gecko-dev.git
Ow! I stubbed my crashtest!
This commit is contained in:
Родитель
ff3eaad015
Коммит
79a60603c8
|
@ -0,0 +1,23 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
|
||||
|
||||
<head>
|
||||
<script>
|
||||
|
||||
function boom()
|
||||
{
|
||||
var doom = document.getElementById("doom");
|
||||
doom.parentNode.removeChild(doom);
|
||||
document.documentElement.removeAttribute("class");
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="setTimeout(boom, 30);">
|
||||
<div>
|
||||
<p id="doom">This paragraph disappears.</p>
|
||||
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><msub><mi>y</mi><mn>0</mn><frameset xmlns="http://www.w3.org/1999/xhtml" /></msub></math>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:math="http://www.w3.org/1998/Math/MathML" class="reftest-wait">
|
||||
<head>
|
||||
<script>
|
||||
|
||||
function boom()
|
||||
{
|
||||
var mi = document.getElementById("mi");
|
||||
var textA = mi.firstChild;
|
||||
var textB = document.createTextNode("b");
|
||||
var textSpace = document.createTextNode(" ");
|
||||
|
||||
var floater = document.getElementById("floater");
|
||||
|
||||
mi.appendChild(textB);
|
||||
mi.appendChild(textSpace);
|
||||
mi.removeChild(textA);
|
||||
mi.removeChild(textSpace);
|
||||
|
||||
floater.parentNode.removeChild(floater);
|
||||
|
||||
document.documentElement.removeAttribute("class");
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="setTimeout(boom, 30);">
|
||||
|
||||
<math:mi id="mi">a<p><span style="float: right;" id="floater" /></p></math:mi>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -12,3 +12,4 @@ load 348492-1.xhtml
|
|||
load 355986-1.xhtml
|
||||
load 364685-1.xhtml
|
||||
load 366012-1.xhtml
|
||||
load 370791-1.xhtml
|
||||
|
|
Загрузка…
Ссылка в новой задаче