diff options
Diffstat (limited to 'dom/base/crashtests/395469-2.xhtml')
-rw-r--r-- | dom/base/crashtests/395469-2.xhtml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dom/base/crashtests/395469-2.xhtml b/dom/base/crashtests/395469-2.xhtml new file mode 100644 index 000000000..7da320256 --- /dev/null +++ b/dom/base/crashtests/395469-2.xhtml @@ -0,0 +1,45 @@ +<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> |