tenfourfox/dom/base/crashtests/395469-2.xhtml
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

46 lines
795 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<head>
<bindings xmlns="http://www.mozilla.org/xbl"><binding id="empty"><content></content></binding></bindings>
<style>
.bef:before { content: counter(c); }
.fl:first-letter { }
</style>
<script>
var xblize, div;
function boom()
{
xblize = document.getElementById("xblize");
div = document.getElementById("div");
xblize.style.MozBinding = "url('#empty')";
// Give the XBL extra time to settle
setTimeout(boom2, 200);
}
function boom2()
{
div.removeChild(xblize);
div.appendChild(xblize);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();">
<div class="fl" id="div"><span class="bef" id="xblize"></span><span class="bef"></span></div>
</body>
</html>