1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/table-anonymous-boxes/394402-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,23 @@ 1.4 +<!DOCTYPE html> 1.5 +<html class="reftest-wait"> 1.6 + <head> 1.7 + <style> 1.8 + body { font-family: sans-serif; } 1.9 + </style> 1.10 + <script> 1.11 + function runTest() { 1.12 + document.getElementById('r').appendChild(document.createTextNode('x')); 1.13 + document.getElementById('r').appendChild(document.createTextNode('x')); 1.14 + document.getElementById('r').appendChild(document.createTextNode('x')); 1.15 + document.body.normalize(); 1.16 + document.getElementById('t').style.display = ""; 1.17 + document.documentElement.className = ""; 1.18 + } 1.19 + </script> 1.20 + </head> 1.21 +<body onload="runTest()"> 1.22 + 1.23 +<table style="display: none" border=1 id="t"><tbody><tr id="r"><td id="c">TD</td></tr></tbody></table> 1.24 + 1.25 +</body> 1.26 +</html>