1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/712849-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 1.4 +<!DOCTYPE html> 1.5 +<html><head> 1.6 +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> 1.7 + <title>testcase</title> 1.8 +<style> 1.9 +.tt { 1.10 + border-collapse: collapse; 1.11 +} 1.12 +.nix { 1.13 + display: none; 1.14 +} 1.15 +.ref { 1.16 + border: solid 3px darkred; 1.17 +} 1.18 + 1.19 +td { 1.20 + width: 20px; 1.21 + height: 20px; 1.22 +} 1.23 + 1.24 +</style> 1.25 +<script> 1.26 + 1.27 +function test () 1.28 +{ 1.29 + document.getElementById ("2").className = "nix"; 1.30 + document.getElementById ("3").className = "ref"; 1.31 +} 1.32 +</script> 1.33 +</head> 1.34 +<body onload="test()"> 1.35 + <table class="tt"> 1.36 + <tr id="1"><td > </td></tr> 1.37 + <tr id="2"><td > </td></tr> 1.38 + <tr id="3"><td > </td></tr> 1.39 + <tr><td> </td></tr> 1.40 + </table> 1.41 +</body> 1.42 +</html>