1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/xbl/crashtests/464863-1.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 + 1.7 +<bindings xmlns="http://www.mozilla.org/xbl"><binding id="foo"><content><qqq><children xmlns="http://www.mozilla.org/xbl"/></qqq></content></binding></bindings> 1.8 + 1.9 +<script type="text/javascript"> 1.10 +// <![CDATA[ 1.11 + 1.12 +function boom() 1.13 +{ 1.14 + var s = document.getElementById("s"); 1.15 + var o = document.getAnonymousNodes(s)[0]; 1.16 + (document.body).appendChild(s); 1.17 + o.appendChild(document.createTextNode("F")); 1.18 +} 1.19 + 1.20 +// ]]> 1.21 +</script> 1.22 +</head> 1.23 + 1.24 +<body onload="boom();"><span id="s" style="-moz-binding: url(#foo)"></span></body> 1.25 +</html>