1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/table-anonymous-boxes/371054-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 + <head> 1.7 + <script> 1.8 + function doTest() { 1.9 + document.getElementById("t").style.display = "table-row"; 1.10 + } 1.11 + </script> 1.12 + </head> 1.13 + <body onload="doTest()"> 1.14 + <table style="border-collapse: collapse"> 1.15 + <tr style="display: block; border: 5px solid"> 1.16 + <td>LongLongLong</td> 1.17 + </tr> 1.18 + <tr style="display: none; border: 5px solid" id="t"> 1.19 + <td>Short</td> 1.20 + </tr> 1.21 + </table> 1.22 + </body> 1.23 +</html>