summaryrefslogtreecommitdiffstats
path: root/toolkit/content/tests/chrome/test_autocomplete_mac_caret.xul
blob: 21670215d48448e8cab9a01644aad1be69fd6ee9 (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
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?>

<window title="Autocomplete Widget Test"
        onload="setTimeout(keyCaretTest, 0);"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

  <script type="application/javascript"
          src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
  <script type="application/javascript"
          src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"/>

<textbox id="autocomplete" type="autocomplete"/>

<script class="testbody" type="application/javascript">
<![CDATA[

SimpleTest.waitForExplicitFinish();

function keyCaretTest()
{
  var autocomplete = $("autocomplete");

  autocomplete.focus();
  checkKeyCaretTest("VK_UP", 0, 0, false, "no value up");
  checkKeyCaretTest("VK_DOWN", 0, 0, false, "no value down");

  autocomplete.value = "Sample";

  autocomplete.selectionStart = 3;
  autocomplete.selectionEnd = 3;
  checkKeyCaretTest("VK_UP", 0, 0, true, "value up with caret in middle");
  checkKeyCaretTest("VK_UP", 0, 0, false, "value up with caret in middle again");

  autocomplete.selectionStart = 2;
  autocomplete.selectionEnd = 2;
  checkKeyCaretTest("VK_DOWN", 6, 6, true, "value down with caret in middle");
  checkKeyCaretTest("VK_DOWN", 6, 6, false, "value down with caret in middle again");

  autocomplete.selectionStart = 1;
  autocomplete.selectionEnd = 4;
  checkKeyCaretTest("VK_UP", 0, 0, true, "value up with selection");

  autocomplete.selectionStart = 1;
  autocomplete.selectionEnd = 4;
  checkKeyCaretTest("VK_DOWN", 6, 6, true, "value down with selection");

  SimpleTest.finish();
}

function checkKeyCaretTest(key, expectedStart, expectedEnd, result, testid)
{
  var autocomplete = $("autocomplete");

  var event = result ? "keypress" : "!keypress";
  synthesizeKeyExpectEvent(key, { }, autocomplete.inputField, event, testid);
  is(autocomplete.selectionStart, expectedStart, testid + " selectionStart");
  is(autocomplete.selectionEnd, expectedEnd, testid + " selectionEnd");
}

]]>
</script>

<body xmlns="http://www.w3.org/1999/xhtml">
<p id="display">
</p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
</body>

</window>