summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/inline-block-sibling-2-dyn.html
blob: bf73bdf98b93316864c1380f596611f7c7adc7a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!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>