Bug 1919083 - [ci] Enable os-integration variant for more suites, r=jmaher
[gecko.git] / layout / reftests / xul / image-appearance-dynamic.xhtml
blob9395a6cef658bbdd4a349873c6f5ac4d96606a98
1 <?xml version="1.0"?>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait">
7 <style xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
8 image {
9 list-style-image: url(colors-16x8.png);
11 .tweak {
12 -moz-appearance: button-arrow-up;
14 ]]></style>
15 <hbox>
16 <image/>
17 </hbox>
18 <script>
19 window.addEventListener("load", function() {
20 document.querySelector("image").className = "tweak";
21 document.documentElement.className = "";
22 });
23 </script>
24 </window>