1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/html/document/crashtests/395340-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 +<script type="text/javascript"> 1.7 + 1.8 +function boom() 1.9 +{ 1.10 + var div1 = document.createElement("div"); 1.11 + div1.style.counterIncrement = "chicken"; 1.12 + div1.contentEditable = "true"; 1.13 + 1.14 + var div2 = document.createElement("div"); 1.15 + div2.style.counterIncrement = "chicken"; 1.16 + 1.17 + document.body.style.content = "'A'"; 1.18 + 1.19 + div1.appendChild(div2); 1.20 + document.body.appendChild(div1); 1.21 + div1.removeChild(div2); 1.22 +} 1.23 + 1.24 +</script> 1.25 + 1.26 +</head> 1.27 + 1.28 +<body onload="boom();"> 1.29 + 1.30 +</body> 1.31 +</html>