jruderman%hmc.edu 8d919035bd Add crashtests
git-svn-id: svn://10.0.0.236/trunk@242060 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-24 03:01:26 +00:00

21 lines
443 B
HTML

<html class="reftest-wait">
<head>
<script>
function boom() {
var newNode = document.createElementNS("http://www.w3.org/1999/xhtml", 'table');
document.getElementById('td').appendChild(newNode);
document.getElementById('table2').setAttribute('align', 'right');
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom,30)">
<table id="table2"><tr><td id="td"></table>
</body>
</html>