1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/497519-1.xhtml 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 + 1.7 +<xbl:bindings xmlns:xbl="http://www.mozilla.org/xbl"> 1.8 +<xbl:binding id="foo"><xbl:content><div style="position:relative;"><xbl:children/></div></xbl:content></xbl:binding> 1.9 +</xbl:bindings> 1.10 + 1.11 +<script> 1.12 +<![CDATA[ 1.13 +function test() { 1.14 + document.getElementById("span").innerHTML = "<table><tr><td></td></tr></table>"; 1.15 +} 1.16 +]]> 1.17 +</script> 1.18 + 1.19 +</head> 1.20 + 1.21 +<body onload="test();"> 1.22 + 1.23 +<div style="-moz-binding: url(#foo)"> 1.24 + 1.25 + <div style="display:none">text</div> 1.26 + <span id="span">text</span> 1.27 + 1.28 +</div> 1.29 + 1.30 +</body> 1.31 +</html>