1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/tests/crashtests/487724-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,23 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 +<script type="text/javascript"> 1.8 + 1.9 +function boom() 1.10 +{ 1.11 + var w = document.getElementById("w"); 1.12 + var q = document.getElementById("q"); 1.13 + var e = document.createTextNode(""); 1.14 + document.documentElement.appendChild(document.body); 1.15 + w.appendChild(e); 1.16 + document.documentElement.offsetHeight; 1.17 + w.removeChild(q); 1.18 + document.documentElement.offsetHeight; 1.19 + e.data += " x "; 1.20 +} 1.21 + 1.22 +</script> 1.23 +</head> 1.24 + 1.25 +<body onload="boom();"><span id="w">s‮<span id="q"></span><div></div><span>a</span></span></body> 1.26 +</html>