summaryrefslogtreecommitdiffstats
path: root/layout/generic/test/bug421839-2-page.html
blob: 75402ca535ba1c2c44238613675a68dfcf2987f0 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<html>
<head>
</head>
<body style="position: absolute;">
<iframe id="a"></iframe>
<iframe></iframe>
<script>
function tripleclick(){
var wu =  SpecialPowers.getDOMWindowUtils(window);
wu.sendMouseEvent('mousedown',  100, 100, 0, 1, 0);
setTimeout(tripleclick,20);
}
setTimeout(tripleclick,200,0, 0);

function doe2() {
document.body.setAttribute('style', 'position: absolute;');
document.body.offsetHeight;
document.getElementById('a').setAttribute('style', 'position: absolute; direction: rtl; ');
setTimeout(doe3,200);
}

function doe3() {
document.getElementsByTagName('*')[2].setAttribute('style', 'unicode-bidi: inherit; ime-mode: disabled; font-family: Al Bayan; ');
}
setTimeout(doe2,500,0);

setTimeout(function(){window.location.reload()}, 1000);


function designmodes(i){
if (i>=0)
  {
try {
window.frames[i].document.designMode='on';
window.frames[i].document.execCommand('inserthtml', false, 'tesxt ');
window.frames[i].document.designMode='off';
}
catch(e) {}
}
else { 
i = window.frames.length-1;
 }
  i--;
setTimeout(designmodes,50,i);
}
setTimeout(designmodes,500,window.frames.length-1);

function doe2(i) {
document.body.style.position == 'absolute' ? document.body.style.position = '' : document.body.style.position = 'absolute';
setTimeout(doe2,200,i);
}
setTimeout(doe2,500,0);
</script>
</body>
</html>