gecko/layout/reftests/box-ordinal/dynamic-1-add-to-two-grouped-1.xul

18 lines
555 B
XML

<?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>