1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/701504.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 +<script> 1.8 + 1.9 +function boom() 1.10 +{ 1.11 + document.documentElement.offsetHeight; 1.12 + 1.13 + var x = document.getElementById('x'); 1.14 + x.removeChild(x.childNodes[1]); 1.15 + 1.16 + document.documentElement.offsetHeight; 1.17 +} 1.18 + 1.19 +</script> 1.20 +</head> 1.21 +<body onload="boom();"> 1.22 + 1.23 +<div style="-moz-column-count: 2;"><span style="unicode-bidi: -moz-isolate;" id="x"><span style="direction: rtl;"></span> <span style="unicode-bidi: -moz-isolate; white-space: pre;"> 1.24 +x</span></span></div> 1.25 + 1.26 +</body> 1.27 +</html>