1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/572582-1.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml" style="width: 1px"> 1.5 +<head> 1.6 +<script style="display: none;" id="fuzz1" type="text/javascript"> 1.7 +<![CDATA[ 1.8 + 1.9 +function boom() 1.10 +{ 1.11 + var span = document.createElementNS("http://www.w3.org/1999/xhtml", "span") 1.12 + var t1 = document.createTextNode("\uD1B5"); 1.13 + span.appendChild(t1); 1.14 + var t2 = document.createTextNode(""); 1.15 + span.appendChild(t2); 1.16 + var t3 = document.createTextNode("\u200Bq"); 1.17 + span.appendChild(t3); 1.18 + document.documentElement.appendChild(span); 1.19 + document.documentElement.offsetHeight; 1.20 + t3.data = "\u062A"; 1.21 +} 1.22 + 1.23 +window.addEventListener("load", boom, false); 1.24 + 1.25 +]]> 1.26 +</script> 1.27 +</head> 1.28 +</html>