1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/444484-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 + 1.8 +<style type="text/css"> 1.9 + 1.10 +body:first-letter { float: right; } 1.11 + 1.12 +</style> 1.13 + 1.14 +<script type="text/javascript"> 1.15 + 1.16 +function boom() 1.17 +{ 1.18 + var t = document.body.firstChild; 1.19 + var se = document.getElementById("se"); 1.20 + se.appendChild(t); // !!! 1.21 + document.body.appendChild(se); 1.22 + se.appendChild(document.createTextNode(" ")); 1.23 +} 1.24 + 1.25 +</script> 1.26 +</head> 1.27 + 1.28 +<body onload="boom();">ﺷ 1.29 +<div id="se" style="display: none;"></div></body> 1.30 +</html>