summaryrefslogtreecommitdiffstats
path: root/layout/reftests/box-ordinal/dynamic-1-remove-to-one-grouped-2.xul
blob: 1fb09c05be049aa6928443b1abd2faa73efb9963 (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 a = document.getElementById("A");
    getComputedStyle(a, "").width; // flush
    a.style.MozBoxOrdinalGroup = "";
    document.documentElement.removeAttribute("class");
  }

  ]]></script>
  <label id="C" value="C" style="-moz-box-ordinal-group: 2" />
  <label id="A" value="A" style="-moz-box-ordinal-group: 2" />
  <label id="B" value="B" />
</window>