1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/tests/crashtests/389326-1-inner.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 +<script> 1.7 +<![CDATA[ 1.8 + 1.9 +function boom() 1.10 +{ 1.11 + var f = document.getElementById("f"); 1.12 + var s = document.getElementById("s"); 1.13 + s.insertBefore(f, s.firstChild); 1.14 + 1.15 + setTimeout(rel, 200); 1.16 +} 1.17 + 1.18 +function rel() 1.19 +{ 1.20 + location.reload(); 1.21 +} 1.22 + 1.23 +]]> 1.24 +</script> 1.25 + 1.26 +</head> 1.27 + 1.28 +<body onload="boom();"> 1.29 +<font id="f"><b>2</b>"</font> 1.30 +<b>"<span id="s">="<b></b></span></b> 1.31 +</body> 1.32 +</html>