blob: f0b325e69dc7a9715128a802981566055d31deaa (
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
body {
font-family: sans-serif;
}
#ib1 {
display: inline-block;
margin-right: 10px;
}
#ib2 {
display: none;
margin-left: 10px;
margin-right: 20px;
}
#ib3 {
display: inline-block;
margin-left: 40px;
}
</style>
<script type="text/javascript">
function test() {
document.getElementById('ib2').style.display = 'inline-block';
document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test);
</script>
</head>
<body>
<div><span id="ib1">Hello<span id="ib2">my</span></span><span id="ib3">Kitty</span></div>
</body>
</html>
|