gecko-dev/layout/reftests/margin-collapsing/inline-block-sibling-2-dyn.html
Florian Quèze 85611a7b6d Bug 1331081 - script generated patch to omit addEventListener/removeEventListener's third parameter when it's false, r=jaws.
--HG--
extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
2017-01-17 11:50:25 +01:00

39 lines
777 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
div {
height: 20px; width: 100%;
background-color: blue;
vertical-align: bottom;
}
#block1 {
margin-bottom: 15px;
}
#inline-block1 {
margin: 25px 0 25px;
}
#inline-block2 {
margin: 15px 0 15px;
}
#block2 {
margin-top: 25px;
}
</style>
<script type="text/javascript">
function test() {
document.getElementById('inline-block1').style.display = 'inline-block';
document.getElementById('inline-block2').style.display = 'inline-block';
document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test);
</script>
</head>
<body>
<div id="block1"></div>
<div id="inline-block1"></div>
<div id="inline-block2"></div>
<div id="block2"></div>
</body>
</html>