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

"use strict";

// Test the urlbar value when focusing after pasting value.

const TEST_DATA = [
  {
    input: "this is a\ntest",
    expected: "this is a test",
  },
  {
    input: "http:\n//\nexample.\ncom",
    expected: "http://example.com",
  },
  {
    input: "javasc\nript:\nalert(1)",
    expected: "alert(1)",
  },
  {
    input: "javascript:alert(1)",
    expected: "alert(1)",
  },
  {
    input: "test",
    expected: "test",
  },
];

add_task(async function test_paste_then_focus() {
  for (const testData of TEST_DATA) {
    gURLBar.value = "";
    gURLBar.focus();

    EventUtils.synthesizeKey("x");
    gURLBar.select();

    await paste(testData.input);

    gURLBar.blur();
    gURLBar.focus();

    Assert.equal(
      gURLBar.value,
      testData.expected,
      "Value on urlbar is correct"
    );
  }
});

async function paste(input) {
  await SimpleTest.promiseClipboardChange(input, () => {
    clipboardHelper.copyString(input);
  });

  document.commandDispatcher
    .getControllerForCommand("cmd_paste")
    .doCommand("cmd_paste");
}