RetroZilla/layout/html/tests/block/bugs/39211.html
2015-10-20 23:03:22 -04:00

24 lines
294 B
HTML

<html>
<head>
<script>
function mO ()
{
document.getElementById('ds').innerHTML="<span>text before table<TABLE BGCOLOR=red><TR><TD>table</TD></TR></TABLE>text after table<\/span>";
}
</script>
</head>
<body onload="mO();mO();">
<div id="ds">
orig contents of ds
</div>
</body>
</html>