1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/466763-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 1.4 +<html> 1.5 +<head> 1.6 +<script type="text/javascript"> 1.7 + 1.8 +function boom() 1.9 +{ 1.10 + var s = document.getElementById("s"); 1.11 + s.appendChild(s.previousSibling); 1.12 + s.parentNode.removeAttribute("class"); 1.13 + document.documentElement.offsetHeight; 1.14 + s.appendChild(document.createTextNode(" ")); 1.15 +} 1.16 + 1.17 +</script> 1.18 +<style type="text/css"> 1.19 + 1.20 +.flfr:first-letter { float: right; } 1.21 + 1.22 +</style> 1.23 +</head> 1.24 + 1.25 +<body onload="boom();" class="flfr">ﺷ <span id="s"></span></body> 1.26 + 1.27 +</html>