1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/830299-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html class="reftest-wait"> 1.6 +<head> 1.7 +<style> 1.8 +.test { 1.9 + position:fixed; 1.10 + display:none; 1.11 + width:100px; height:100px; 1.12 + background:yellow; 1.13 +} 1.14 +.doTest .test { 1.15 + display:block; 1.16 +} 1.17 +</style> 1.18 +</head> 1.19 +<body> 1.20 +<div style="transform:translate(10px,0); overflow:scroll; width:200px; height:200px;"> 1.21 + <div class="test"></div> 1.22 +</div> 1.23 +<script> 1.24 +function doTest() { 1.25 + document.documentElement.setAttribute("class", "doTest"); 1.26 +} 1.27 +window.addEventListener("MozReftestInvalidate", doTest, false); 1.28 +</script> 1.29 +</body> 1.30 +</html>