mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
34 lines
621 B
HTML
34 lines
621 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
#separator {
|
||
|
height: 40px;
|
||
|
background-color: green;
|
||
|
}
|
||
|
#first-child {
|
||
|
display: none;
|
||
|
height: 40px;
|
||
|
margin-top: -20px;
|
||
|
background-color: blue;
|
||
|
}
|
||
|
#parent {
|
||
|
margin-top: -20px;
|
||
|
}
|
||
|
</style>
|
||
|
<script type="text/javascript">
|
||
|
function test() {
|
||
|
document.getElementById('first-child').style.display = 'block';
|
||
|
document.documentElement.removeAttribute('class');
|
||
|
}
|
||
|
document.addEventListener('MozReftestInvalidate', test, false);
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="separator"></div>
|
||
|
<div id="parent">
|
||
|
<div id="first-child"></div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|