blob: 7da32025678592066e998747f2189e8efd009979 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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>
|