2009-01-20 09:46:52 -08:00
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
|
|
|
|
|
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
class="reftest-wait">
|
|
|
|
|
|
|
|
<html:style>
|
|
|
|
#prog {
|
|
|
|
-moz-appearance: none;
|
|
|
|
background-color: blue;
|
|
|
|
}
|
|
|
|
#prog .progress-bar {
|
2010-09-09 08:21:47 -07:00
|
|
|
border-radius: 3px 3px;
|
2009-01-20 09:46:52 -08:00
|
|
|
background-color: red;
|
|
|
|
}
|
|
|
|
</html:style>
|
|
|
|
|
|
|
|
<progressmeter id="prog" value="50"/>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<![CDATA[
|
|
|
|
|
|
|
|
function load(event) {
|
|
|
|
setTimeout(function() {
|
|
|
|
document.getElementById("prog").max = 200;
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}, 0);
|
|
|
|
}
|
|
|
|
window.addEventListener("load", load, false);
|
|
|
|
|
|
|
|
]]>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</window>
|