blob: 35256a7e8bca0b1277e2a63c9038b7fda8f4e4be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<p>Matching other execCommand identifiers, execCommand("ForwardDelete") should not scroll the page to make selection visible.</p>
<p>This test only works in WebKit, as other engines do not implement this command.</p>
<div contenteditable>a</div>
<div style="height:10000"></div>
<script>
var text = document.getElementsByTagName('div')[0].firstChild;
window.getSelection().setBaseAndExtent(text, 0, text, 0);
window.scrollTo(0, 1000);
document.execCommand("ForwardDelete");
var result = (window.pageYOffset == 1000) ? "SUCCESS" : "FAILURE";
if (window.testRunner) {
testRunner.dumpAsText();
document.write(result);
} else
alert(result);
</script>
|