1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/forms/crashtests/960277-2.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,14 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<style> 1.6 +#d { overflow:scroll; width:200px; height:200px; background:yellow; } 1.7 +#d2 { right:0; width:100px; height:100px; background:purple; } 1.8 +</style> 1.9 +<fieldset id="d"> 1.10 + <div id="d2"></div> 1.11 +</fieldset> 1.12 +<script> 1.13 +d.getBoundingClientRect(); 1.14 +d.style.transform = "translateX(100px)"; 1.15 +d.getBoundingClientRect(); 1.16 +d2.style.position = "absolute"; 1.17 +</script>