summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/inline-horizontal-2-dyn.html
blob: 493a32a82b8c080701bd2d982adef87468edb6dc (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
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
body {
 font-family: sans-serif;
}
#inline1 {
 margin-right: 10px;
}
#inline2 {
 display: none;
 margin-left: 10px;
 margin-right: 20px;
}
#inline3 {
 margin-left: 40px;
}
</style>
<script type="text/javascript">
function test() {
 document.getElementById('inline2').style.display = 'inline';
 document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test);
</script>
</head>
<body>
<div><span id="inline1">Hello<span id="inline2">my</span></span><span id="inline3">Kitty</span></div>
</body>
</html>