mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
455 B
XML
16 lines
455 B
XML
<?xml version="1.0"?>
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
id="main"
|
|
class="reftest-wait"
|
|
style="background-color: red;"
|
|
onload="HandleLoad()">
|
|
<script>
|
|
function HandleLoad() {
|
|
setTimeout(function() {
|
|
document.documentElement.style.backgroundColor = "green";
|
|
document.documentElement.className = "";
|
|
}, 100);
|
|
}
|
|
</script>
|
|
</window>
|