Bug 575870 - Enable the firefox button on xp themed, classic, and aero basic. r=dao...
[mozilla-central.git] / layout / reftests / bugs / 474336-1.xul
blob26295a521c88f49e72b9e6a7ff072d801b328f38
1 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
3 <window xmlns:html="http://www.w3.org/1999/xhtml"
4         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
5         class="reftest-wait">
7 <html:style>
8     #prog {
9         -moz-appearance: none;
10         background-color: blue;
11     }
12     #prog .progress-bar {
13         -moz-border-radius: 3px 3px;
14         background-color: red;
15     }
16 </html:style>
18 <progressmeter id="prog" value="50"/>
20 <script>
21 <![CDATA[
23 function load(event) {
24   setTimeout(function() {
25     document.getElementById("prog").max = 200;
26     document.documentElement.removeAttribute("class");
27   }, 0);
29 window.addEventListener("load", load, false);
31 ]]>
32 </script>
34 </window>