Files
Mozilla/mozilla/layout/mathml/crashtests/348811-1.xhtml
jruderman%hmc.edu eeb63e9fe0 Add crashtests
git-svn-id: svn://10.0.0.236/trunk@242479 18797224-902f-48f8-a5cc-f745e15eee43
2008-01-06 05:02:47 +00:00

26 lines
497 B
HTML

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