summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_bug226361.xhtml
blob: 143a48575764b60993e73633e7e1ba9f0e0ed226 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=226361
-->
<head>
  <title>Test for Bug 226361</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 id="body1">
<p id="display">

 <a id="b1" tabindex="1" href="http://home.mozilla.org">start</a><br />
<br />

<iframe id="iframe" tabindex="2" src="bug226361_iframe.xhtml"></iframe>

 <a id="b2" tabindex="3" href="http://home.mozilla.org">end</a>

</p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script type="application/javascript">
<![CDATA[

/** Test for Bug 226361 **/

// accessibility.tabfocus must be set to value 7 before running test also
// on a mac.
function setTabFocus() {
  SpecialPowers.pushPrefEnv({ set: [[ "accessibility.tabfocus", 7 ]] }, doTest);
}

// =================================

var doc = document;
function tab_to(id) {
  synthesizeKey("KEY_Tab", {});
  is(doc.activeElement.id, id, "element with id=" + id + " should have focus");
}

function tab_iframe() {
  doc = document;
  tab_to('iframe');

  // inside iframe
  doc = document.getElementById('iframe').contentDocument
  tab_to('a3');tab_to('a5');tab_to('a1');tab_to('a2');tab_to('a4');
}


function doTest() {
  window.getSelection().removeAllRanges();
  document.getElementById('body1').focus();
  is(document.activeElement.id, document.body.id, "body element should be focused");

  doc = document;
  tab_to('b1');

  tab_iframe();

  doc=document
  document.getElementById('iframe').focus()
  tab_to('b2');
  // Change tabindex so the next TAB goes back to the IFRAME
  document.getElementById('iframe').setAttribute('tabindex','4');

  tab_iframe();
  SimpleTest.finish();
}

SimpleTest.waitForExplicitFinish();
addLoadEvent(setTabFocus);

]]>
</script>
</pre>
</body>
</html>