mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
0cb1771f10
the fix is to provide a way for the testcase to indicate when it's finished loading. Also move the reftest self-checks into their own manifest. r=dbaron
13 lines
317 B
HTML
13 lines
317 B
HTML
<html class="reftest-wait">
|
|
<body style="background-color: red;"
|
|
onload="HandleLoad()">
|
|
<script>
|
|
function HandleLoad() {
|
|
setTimeout(function() {
|
|
document.body.style.backgroundColor = "green";
|
|
document.documentElement.className = "";
|
|
}, 100);
|
|
}
|
|
</script>
|
|
</body>
|