Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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-appearance: none;
14 border-radius: 3px 3px;
15 background-color: red;
16 }
17 </html:style>
19 <progressmeter id="prog" value="50"/>
21 <script>
22 <![CDATA[
24 function load(event) {
25 setTimeout(function() {
26 document.getElementById("prog").max = 200;
27 document.documentElement.removeAttribute("class");
28 }, 0);
29 }
30 window.addEventListener("load", load, false);
32 ]]>
33 </script>
35 </window>