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_bug468167.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_bug468167.html')
-rw-r--r-- | layout/generic/test/test_bug468167.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/layout/generic/test/test_bug468167.html b/layout/generic/test/test_bug468167.html new file mode 100644 index 000000000..2f8cf7c7e --- /dev/null +++ b/layout/generic/test/test_bug468167.html @@ -0,0 +1,55 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=468167 +--> +<head> + <title>Test for Bug 468167</title> + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> + <script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> +</head> +<body> +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=468167">Mozilla Bug 468167</a> +<p id="display"> +<textarea id="ta" rows="10" cols="80"></textarea> +</p> +<pre id="test"> +<script type="application/javascript"> + +/** Test for Bug 468167 **/ + +SimpleTest.waitForExplicitFinish(); +SimpleTest.waitForFocus(runTests); + +function runTests() +{ + var ta = document.getElementById("ta"); + ta.focus(); + is(ta.scrollTop, 0, "initially scrolled to top"); + var s = ""; + for (var i = 0; i < 40; ++i) { + // three characters per line + if (i < 10) + s += "0"; + s += i + "\n"; + } + ta.value = s; + is(ta.scrollTop, 0, "scrolled to top after adding content"); + ta.scrollTop = 9999; // scroll down as far as we can + isnot(ta.scrollTop, 0, "scrolled down after scrolling down"); + + ta.setSelectionRange(0, 99); // 33 lines out of 40 + + // Send a backspace key event to delete the selection + synthesizeKey("VK_BACK_SPACE", { }); + + is(ta.scrollTop, 0, "scrolled to top after deleting selection"); + + SimpleTest.finish(); +} + +</script> +</pre> +</body> +</html> |