summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/inline-block-child-2-dyn.html
blob: 388da365ad6df6b4170b5b5eaca629025b551f7b (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
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
#inline-block {
 display: inline-block;
 margin: 10px 0;
 background-color: green;
}
#block {
 margin: 10px 0;
 background-color: lightgreen;
}
</style>
<script type="text/javascript">
function test() {
 document.getElementById('block').style.display = 'block';
 document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test);
</script>
</head>
<body>
<div id="inline-block"><span id="block">Hello Kitty</span></div>
</body>
</html>