summaryrefslogtreecommitdiffstats
path: root/browser/components/urlbar/tests/browser/browser_typed_value.js
blob: ca4566d172ac06be57a99d9d9cda3128274f7d2b (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

// This test ensures that the urlbar is restored to the typed value on blur.

"use strict";

add_setup(async function () {
  registerCleanupFunction(async function () {
    Services.prefs.clearUserPref("browser.urlbar.autoFill");
    Services.prefs.clearUserPref("browser.urlbar.suggest.quickactions");
    gURLBar.handleRevert();
    await PlacesUtils.history.clear();
  });
  Services.prefs.setBoolPref("browser.urlbar.autoFill", true);
  Services.prefs.setBoolPref("browser.urlbar.suggest.quickactions", false);

  await PlacesTestUtils.addVisits([
    "http://example.com/",
    "http://example.com/foo",
  ]);
});

add_task(async function test_autofill() {
  let typed = "ex";
  await UrlbarTestUtils.promiseAutocompleteResultPopup({
    window,
    value: typed,
    fireInputEvent: true,
  });
  Assert.equal(gURLBar.value, "example.com/", "autofilled value as expected");
  Assert.equal(gURLBar.selectionStart, typed.length);
  Assert.equal(gURLBar.selectionEnd, gURLBar.value.length);

  gURLBar.blur();
  Assert.equal(gURLBar.value, typed, "Value should have been restored");
  gURLBar.focus();
  Assert.equal(gURLBar.value, typed, "Value should not have changed");
  Assert.equal(gURLBar.selectionStart, typed.length);
  Assert.equal(gURLBar.selectionEnd, typed.length);
});

add_task(async function test_complete_selection() {
  let typed = "ex";
  await UrlbarTestUtils.promiseAutocompleteResultPopup({
    window,
    value: typed,
    fireInputEvent: true,
  });
  Assert.equal(gURLBar.value, "example.com/", "autofilled value as expected");
  Assert.equal(
    UrlbarTestUtils.getResultCount(window),
    2,
    "Should have the correct number of matches"
  );
  EventUtils.synthesizeKey("KEY_ArrowDown");
  Assert.equal(
    gURLBar.value,
    "example.com/foo",
    "Value should have been completed"
  );

  gURLBar.blur();
  Assert.equal(gURLBar.value, typed, "Value should have been restored");
  gURLBar.focus();
  Assert.equal(gURLBar.value, typed, "Value should not have changed");
  Assert.equal(gURLBar.selectionStart, typed.length);
  Assert.equal(gURLBar.selectionEnd, typed.length);
});