summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/block-no-content-1d-dyn.html
blob: 51710e225485bfb9b483a1dc13196bd2b8df6dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
.separator {
 height: 20px;
 background-color: green;
}
</style>
<script type="text/javascript">
function test() {
 document.getElementById('margin-only').style.margin = '60px 0 -40px';
 document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test);
</script>
</head>
<body>
<div class="separator"></div>
<div id="margin-only"></div>
<div class="separator"></div>
</body>
</html>