1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/331679-1.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,36 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 +<title>Bug 331679 testcase</title> 1.7 + 1.8 + 1.9 +<style id="style"> 1.10 +.cat::-moz-table-row-group { overflow: scroll; } 1.11 +.toad { position: absolute; } 1.12 +</style> 1.13 + 1.14 +<script> 1.15 + 1.16 +function init() 1.17 +{ 1.18 + document.getElementById("style").textContent += "table::-moz-table-row { opacity: 0.2; }"; 1.19 + document.getElementById("row").setAttribute("class", "toad"); 1.20 + document.getElementById("table").setAttribute("class", "cat"); 1.21 +} 1.22 + 1.23 +window.addEventListener("load", init, false); 1.24 + 1.25 +</script> 1.26 + 1.27 +</head> 1.28 + 1.29 +<body> 1.30 + 1.31 +<table id="table"> 1.32 + <tr id="row"> 1.33 + <td>Cell</td> 1.34 + </tr> 1.35 +</table> 1.36 + 1.37 + 1.38 +</body> 1.39 +</html>