blob: 6ef73bc2723de6139e6e810832a0e74ec04fd3bb (
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 c = document.getElementById("C");
getComputedStyle(c, "").width; // flush
c.style.MozBoxOrdinalGroup = "2";
document.documentElement.removeAttribute("class");
}
]]></script>
<label id="B" value="B" style="-moz-box-ordinal-group: 2" />
<label id="C" value="C" />
<label id="A" value="A" />
</window>
|