summaryrefslogtreecommitdiffstats
path: root/toolkit/content/tests/chrome/test_editor_for_input_with_autocomplete.html
blob: 5989ea07bd8f80e8a75b2e4ac99fd8e4b6a30b7b (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Basic editor behavior for HTML input element with autocomplete</title>
  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <script src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>
  <script type="text/javascript" src="file_editor_with_autocomplete.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>

<div id="content">
  <iframe id="formTarget" name="formTarget"></iframe>
  <form action="data:text/html," target="formTarget">
    <input name="test" id="input"><input type="submit">
  </form>
</div>

<pre id="test">
<script class="testbody" type="text/javascript">
SimpleTest.waitForExplicitFinish();

async function registerWord(aTarget, aAutoCompleteController) {
  // Register a word to the form history.
  let chromeScript = SpecialPowers.loadChromeScript(function addEntry() {
/* eslint-env mozilla/chrome-script */
    let {FormHistory} = ChromeUtils.import("resource://gre/modules/FormHistory.jsm");
    FormHistory.update({ op: "add", fieldname: "test", value: "Mozilla" });
  });
  aTarget.focus();
  aTarget.value = "Mozilla";

  await waitForCondition(() => {
    if (aAutoCompleteController.searchStatus == aAutoCompleteController.STATUS_NONE ||
        aAutoCompleteController.searchStatus == aAutoCompleteController.STATUS_COMPLETE_NO_MATCH) {
      aAutoCompleteController.startSearch("Mozilla");
    }
    return aAutoCompleteController.matchCount > 0;
  });
  chromeScript.destroy();
  aTarget.value = "";
  synthesizeKey("KEY_Escape");
}

async function runTests() {
  var formFillController =
    SpecialPowers.getFormFillController()
                 .QueryInterface(Ci.nsIAutoCompleteInput);
  var originalFormFillTimeout = formFillController.timeout;

  SpecialPowers.attachFormFillControllerTo(window);
  var target = document.getElementById("input");

  // Register a word to the form history.
  await registerWord(target, formFillController.controller);

  let tests1 = new nsDoTestsForEditorWithAutoComplete(
    "Testing on HTML input (asynchronously search)",
    window, target, formFillController.controller, is, todo_is,
    function() { return target.value; });
  await tests1.run();

  target.setAttribute("timeout", 0);
  let tests2 = new nsDoTestsForEditorWithAutoComplete(
        "Testing on HTML input (synchronously search)",
        window, target, formFillController.controller, is, todo_is,
        function() { return target.value; });
  await tests2.run();

  formFillController.timeout = originalFormFillTimeout;
  SpecialPowers.detachFormFillControllerFrom(window);
  SimpleTest.finish();
}

SimpleTest.waitForFocus(runTests);

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