blob: 88659d3f490f8582d088130e871b1b8d0407952b (
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
|
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<meta charset="utf-8">
<title>Testcase #2 for bug 1258308</title>
<script>
function test1() {
synthesizeKey("VK_RIGHT", { });
synthesizeKey("VK_RIGHT", { });
synthesizeKey("VK_RIGHT", { });
synthesizeKey("VK_RIGHT", { });
synthesizeKey("VK_RIGHT", { });
synthesizeKey("VK_RIGHT", { });
synthesizeKey("VK_RIGHT", { });
synthesizeKey("VK_RIGHT", { });
document.body.offsetHeight;
document.documentElement.removeAttribute("class");
}
function runTests() {
document.querySelector('pre').focus();
document.body.offsetHeight;
}
</script>
</head>
<body>
<pre contenteditable tabindex=1 onfocus="test1()" spellcheck="false">abc
def
ghi</pre>
<script>
SimpleTest.waitForFocus(runTests);
</script>
</body>
</html>
|