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