summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/general/test_focus_scrollchildframe.html
blob: 4b12462c4515bca77a774cb367843f196e3e94bd (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Tests for for-of loops</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
</head>
<body onload="doTest()">
<p id="display"></p>
<div id="content" style="display: none"></div>
<script>
function doTest() {
  document.getElementById("button").focus();
  is(window.scrollY, 0, "Scrolled position initially 0");
  synthesizeKey("KEY_Tab");
  ok(window.scrollY > 200, "Scrolled child frame into view");
  SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
</script>
<button id="button">B</button><br><iframe style="margin-top:10000px;height:400px"></iframe>
</body>
</html>