2009-03-26 11:08:58 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html class="reftest-wait">
|
|
|
|
<head>
|
2010-03-08 02:11:06 -08:00
|
|
|
<style>
|
|
|
|
body { font-family: sans-serif; }
|
|
|
|
</style>
|
2009-03-26 11:08:58 -07:00
|
|
|
<script>
|
|
|
|
function runTest() {
|
|
|
|
document.getElementById('r').appendChild(document.createTextNode('x'));
|
|
|
|
document.getElementById('r').appendChild(document.createTextNode('x'));
|
|
|
|
document.getElementById('r').appendChild(document.createTextNode('x'));
|
|
|
|
document.body.normalize();
|
|
|
|
document.documentElement.className = "";
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="runTest()">
|
|
|
|
|
|
|
|
<table border=1 id="t"><tbody><tr id="r"><td id="c">TD</td></tr></tbody></table>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|