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