1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/forms/crashtests/639733.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 +<script> 1.7 +<![CDATA[ 1.8 + 1.9 +function remove(n) 1.10 +{ 1.11 + n.parentNode.removeChild(n); 1.12 +} 1.13 + 1.14 +function boom() 1.15 +{ 1.16 + 1.17 + document.documentElement.offsetHeight; 1.18 + remove(document.getElementById("s")); 1.19 + remove(document.getElementById("e")); 1.20 + document.documentElement.offsetHeight; 1.21 +} 1.22 + 1.23 +]]> 1.24 +</script> 1.25 +</head> 1.26 +<body onload="boom();"> 1.27 +<embed id="e" src="data:text/html,A"></embed><span id="s"><div></div></span><isindex/> 1.28 +</body> 1.29 +</html>