blob: ec97ce6fde7b75f5e2721f484779fb78646efbe8 (
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">
<html>
<head>
<style type="text/css">
#abs-pos {
top: 20px; left: 20px;
width: 200px;
background-color: lightgreen;
}
#in-flow-child {
height: 100px;
margin-top: 40px;
margin-bottom: 40px;
background-color: green;
}
</style>
<script type="text/javascript">
function test() {
document.getElementById('abs-pos').style.position = 'absolute';
document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test);
</script>
</head>
<body>
<div id="abs-pos">
<div id="in-flow-child"></div>
</div>
</body>
</html>
|