diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/generic/test/bug421839-2-page.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | uxp-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/generic/test/bug421839-2-page.html')
-rw-r--r-- | layout/generic/test/bug421839-2-page.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/layout/generic/test/bug421839-2-page.html b/layout/generic/test/bug421839-2-page.html new file mode 100644 index 0000000000..75402ca535 --- /dev/null +++ b/layout/generic/test/bug421839-2-page.html @@ -0,0 +1,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> |