1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/first-line/stress-2.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<!DOCTYPE html> 1.5 +<html class="reftest-wait"> 1.6 +<head> 1.7 + 1.8 +<style> 1.9 +#fl:first-line { } 1.10 +</style> 1.11 + 1.12 +<script> 1.13 +function boom() 1.14 +{ 1.15 + document.getElementById("s").style.overflow = "auto"; 1.16 + document.body.offsetWidth; 1.17 + document.documentElement.className = ""; 1.18 +} 1.19 +</script> 1.20 + 1.21 +</head> 1.22 +<body onload="setTimeout(boom, 300);"> 1.23 + 1.24 +<div id="fl"> 1.25 + <b><span id="s">Foo</span></b> 1.26 +</div> 1.27 + 1.28 +</body> 1.29 +</html>