blob: d3c444291dab1bc2c90f9ff0296acd86af0e90c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?xml version="1.0"?>
<!DOCTYPE window>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="run()">
<script type="application/javascript"><![CDATA[
function run() {
var b = document.getElementById("B");
getComputedStyle(b, "").width; // flush
b.style.MozBoxOrdinalGroup = "";
document.documentElement.removeAttribute("class");
}
]]></script>
<label id="A" value="A" />
<label id="B" value="B" style="-moz-box-ordinal-group: 2" />
<label id="C" value="C" />
</window>
|