mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
30 lines
574 B
HTML
30 lines
574 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
#sibling1 {
|
||
|
height: 20px;
|
||
|
background-color: green;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
#sibling2 {
|
||
|
display: none;
|
||
|
height: 20px;
|
||
|
background-color: green;
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
</style>
|
||
|
<script type="text/javascript">
|
||
|
function test() {
|
||
|
document.getElementById('sibling2').style.display = 'block';
|
||
|
document.documentElement.removeAttribute('class');
|
||
|
}
|
||
|
document.addEventListener('MozReftestInvalidate', test, false);
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="sibling1"></div>
|
||
|
<div id="sibling2"></div>
|
||
|
</body>
|
||
|
</html>
|