mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
32 lines
595 B
HTML
32 lines
595 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style type="text/css">
|
|
#last-child, #separator {
|
|
height: 20px;
|
|
background-color: green;
|
|
}
|
|
#parent {
|
|
margin-bottom: 10px;
|
|
}
|
|
#last-child {
|
|
display: none;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
function test() {
|
|
document.getElementById('last-child').style.display = 'block';
|
|
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>
|