mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
396 B
HTML
15 lines
396 B
HTML
|
<!DOCTYPE html>
|
||
|
<html id="theroot" style="background-color: red" class="reftest-wait">
|
||
|
<head>
|
||
|
<script>
|
||
|
function dodisplaynone() {
|
||
|
document.getElementById('theroot').style.display = 'none';
|
||
|
document.documentElement.className = "";
|
||
|
}
|
||
|
document.addEventListener("MozReftestInvalidate", dodisplaynone, false);
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|