This commit is contained in:
jruderman@hmc.edu 2007-12-17 17:25:26 -08:00
Родитель ff3eaad015
Коммит 79a60603c8
3 изменённых файлов: 57 добавлений и 0 удалений

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

@ -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