Add crashtests

This commit is contained in:
jruderman@hmc.edu 2008-01-05 21:02:47 -08:00
parent d3895d69fe
commit 62e6e91105
3 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function foo()
{
var newTable = document.createElementNS("http://www.w3.org/1998/Math/MathML", "mtable")
document.getElementById("mtr").appendChild(newTable);
}
</script>
</head>
<body onload="foo()">
<div>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mtable> <mtr id="mtr"> <mtd>
<mi>x</mi>
</mtd> </mtr> </mtable> </math>
</div>
</body>
</html>

View File

@ -0,0 +1,31 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function foo()
{
var m = "http://www.w3.org/1998/Math/MathML";
var newTable = document.createElementNS(m, "mtable")
document.getElementById("mtable").appendChild(newTable);
}
</script>
</head>
<body onload="foo()">
<div>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mtable id="mtable">
<mtr id="mtr">
<mtd>
<mi>x</mi>
</mtd>
</mtr>
</mtable>
</math>
</div>
</body>
</html>

View File

@ -10,6 +10,8 @@ load 336074-1.xhtml
load 347495-1.xhtml
load 347507-1.xhtml
load 348492-1.xhtml
load 348811-1.xhtml
load 348811-2.xhtml
load 355986-1.xhtml
load 364685-1.xhtml
load 366012-1.xhtml