mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
521 B
Plaintext
18 lines
521 B
Plaintext
|
<?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="A" value="A" />
|
||
|
<label id="C" value="C" />
|
||
|
<label id="B" value="B" />
|
||
|
</window>
|