adding a crashtest

This commit is contained in:
bmlk@gmx.de 2008-01-27 00:14:25 -08:00
parent 3cf5f1aeed
commit a32c23f7bd
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:m="http://www.w3.org/1998/Math/MathML">
<head>
<script type="text/javascript">
function boom()
{
var mtd = document.getElementById("mtd");
var ns = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
var nt = document.createTextNode("foo");
ns.appendChild(nt);
mtd.appendChild(ns);
mtd.setAttribute("rowspan", "0");
}
</script>
</head>
<body onload="boom();"><m:mtd id="mtd" style="display: table-footer-group"><m:mi /></m:mtd></body>
</html>

View File

@ -29,3 +29,4 @@ load 400475-1.xhtml
load 402400-1.xhtml
load 405187-1.xhtml
load 405271-1.xml
load 413063-1.xhtml