tenfourfox/layout/reftests/margin-collapsing/block-no-content-3c-dyn.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

36 lines
655 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
#separator {
height: 20px;
background-color: green;
}
#parent {
background-color: green;
margin-top: 90px;
}
#first-child {
margin-top: -40px;
}
#last-child {
height: 20px;
}
</style>
<script type="text/javascript">
function test() {
document.getElementById('first-child').style.marginBottom = '-60px';
document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test, false);
</script>
</head>
<body>
<div id="separator"></div>
<div id="parent">
<div id="first-child"></div>
<div id="last-child"></div>
</div>
</body>
</html>