mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
1b17d6610d
--HG-- extra : rebase_source : 2768fbfd11770d9f72edd70d7828b4f4f5ac9ae0
36 lines
679 B
HTML
36 lines
679 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style type="text/css">
|
|
#sibling1 {
|
|
height: 20px;
|
|
background-color: green;
|
|
margin-bottom: 10px;
|
|
}
|
|
#sibling2 {
|
|
height: 20px;
|
|
background-color: green;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
#sibling3 {
|
|
height: 20px;
|
|
background-color: green;
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
function test() {
|
|
document.getElementById('sibling2').style.display = 'none';
|
|
document.documentElement.removeAttribute('class');
|
|
}
|
|
document.addEventListener('MozReftestInvalidate', test, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="sibling1"></div>
|
|
<div id="sibling2"></div>
|
|
<div id="sibling3"></div>
|
|
</body>
|
|
</html>
|