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/test_bug579767.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/generic/test/test_bug579767.html')
-rw-r--r-- | layout/generic/test/test_bug579767.html | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/layout/generic/test/test_bug579767.html b/layout/generic/test/test_bug579767.html new file mode 100644 index 000000000..177a310af --- /dev/null +++ b/layout/generic/test/test_bug579767.html @@ -0,0 +1,78 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=579767 +--> +<head> + <title>Test for Bug 579767</title> + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> + <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script> + <script type="text/javascript" src="/tests/SimpleTest/WindowSnapshot.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> + <style> + iframe { + width: 1006px; + height: 306px; + } + </style> +</head> +<body> +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=579767">Mozilla Bug 579767</a> +<p id="display"></p> +<div id="content"> +<iframe src="file_bug579767_1.html" id="f1"></iframe> +<iframe src="file_bug579767_2.html" id="f2"></iframe> +</div> +<pre id="test"> +<script type="application/javascript"> + +/** Test for Bug 579767 **/ +SimpleTest.waitForExplicitFinish(); +addLoadEvent(function() { + var f1 = document.getElementById("f1"); + var f2 = document.getElementById("f2"); + var t1 = f1.contentDocument.documentElement; + var t2 = f2.contentDocument.documentElement; + + setTimeout(function() { + // drag the vertical handle 10px to the right + synthesizeMouse(t1, 100, 6, {type: "mousedown"}, f1.contentWindow); + synthesizeMouse(t1, 101, 6, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 102, 6, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 103, 6, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 104, 6, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 105, 6, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 106, 6, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 107, 6, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 108, 6, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 109, 6, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 200, 6, {type: "mouseup" }, f1.contentWindow); + + setTimeout(function() { + // drag the horizontal handle 10px to down and 5px to right + synthesizeMouse(t1, 2, 92, {type: "mousedown"}, f1.contentWindow); + synthesizeMouse(t1, 3, 93, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 4, 94, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 5, 95, {type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 7, 102,{type: "mousemove"}, f1.contentWindow); + synthesizeMouse(t1, 7, 102,{type: "mouseup" }, f1.contentWindow); + + setTimeout(function() { + // now compare the two windows + ok(compareSnapshots(snapshotWindow(f1.contentWindow), + snapshotWindow(f2.contentWindow), true)[0], + "The borders should be painted correctly after resizing"); + is(t1.querySelectorAll("frameset")[0].getAttribute("cols"), "11%,89%", + "The cols attribute should be correctly updated"); + is(t1.querySelectorAll("frameset")[1].getAttribute("rows"), "100,200", + "The rows attribute should be correctly updated"); + SimpleTest.finish(); + }, 0); + }, 0); + }, 0); +}); + +</script> +</pre> +</body> +</html> |