blob: 2a1dd7b8a3d6304ac1be0818dc57ec16d67bdeb4 (
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
#float-blue {
float: left;
margin-right: 20px;
background-color: blue;
width: 40px;
height: 100px;
}
.dyn {
display: none;
}
.float-green {
float: left;
margin: 0 20px;
background-color: green;
width: 40px;
height: 100px;
}
</style>
<script type="text/javascript">
function test() {
document.getElementsByClassName('dyn')[0].style.display = 'block';
document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test);
</script>
</head>
<body>
<div id="float-blue"></div>
<div class="float-green dyn"></div>
<div class="float-green"></div>
</body>
</html>
|