Mypal/layout/reftests/margin-collapsing/block-non-sibling-3b-dyn.html

42 lines
723 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
#a {
background-color: green;
margin-bottom: 80px;
}
#a div {
display: none;
height: 20px;
margin-bottom: 10px;
}
#b {
background-color: green;
margin-top: 20px;
}
#b div {
display: none;
height: 20px;
margin-top: 40px;
}
</style>
<script type="text/javascript">
function test() {
document.getElementsByTagName('div')[1].style.display = 'block';
document.getElementsByTagName('div')[3].style.display = 'block';
document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test, false);
</script>
</head>
<body>
<div id="a">
<div></div>
</div>
<div id="b">
<div></div>
</div>
</body>
</html>