summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bidi/496006-1.html
blob: 5629fa4ea58f59a352ced0ff2dee3a48440ae43a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html class="reftest-wait">
<head>
</head>
<body style="direction: rtl;">
m
<span id="a" style="border: 1px solid black;"></span>
<div><script>document.body.offsetHeight;</script></div>
m

<script>
function doe() {
var a=document.getElementById('a');
a.style.outline = '1px solid transparent';
document.body.offsetHeight;
a.style.outline = '';
document.documentElement.removeAttribute('class');
}
setTimeout(doe, 500);
</script>
</body>
</html>