summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug674770-1.html
blob: 0b6089e0ef1c6d832615803b0597743dfe599af9 (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
83
84
85
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=674770
-->
<head>
  <title>Test for Bug 674770</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>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=674770">Mozilla Bug 674770</a>
<p id="display"></p>
<div id="content">
<a href="file_bug674770-1.html" id="link1">test</a>
<div contenteditable>
<a href="file_bug674770-1.html" id="link2">test</a>
</div>
</div>
<pre id="test">
<script type="application/javascript">

SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
  SpecialPowers.pushPrefEnv({"set": [["middlemouse.paste", true]]}, startTests);
});

function startTests() {
  var tests = [
    { description: "Testing link in <div>: ",
      target() { return document.querySelector("#link1"); },
      linkShouldWork: true },
    { description: "Testing link in <div contenteditable>: ",
      target() { return document.querySelector("#link2"); },
      linkShouldWork: false },
  ];
  var currentTest;
  function runNextTest() {
    localStorage.removeItem("clicked");
    currentTest = tests.shift();
    if (!currentTest) {
      SimpleTest.finish();
      return;
    }
    ok(true, currentTest.description + "Starting to test...");
    synthesizeMouseAtCenter(currentTest.target(), { button: 1 });
  }


  addEventListener("storage", function(e) {
    is(e.key, "clicked", currentTest.description + "Key should always be 'clicked'");
    is(e.newValue, "true", currentTest.description + "Value should always be 'true'");
    ok(currentTest.linkShouldWork, currentTest.description + "The click operation on the link " + (currentTest.linkShouldWork ? "should work" : "shouldn't work"));
    SimpleTest.executeSoon(runNextTest);
  }, false);

  SpecialPowers.addSystemEventListener(window, "auxclick", function(aEvent) {
    // When the click event should cause default action, e.g., opening the link,
    // the event shouldn't have been consumed except the link handler.
    // However, in e10s mode, it's not consumed during propagating the event but
    // in non-e10s mode, it's consumed during the propagation.  Therefore,
    // we cannot check defaultPrevented value when the link should work as is
    // if there is no way to detect if it's running in e10s mode or not.
    // So, let's skip checking Event.defaultPrevented value when the link should
    // work.  In such case, we should receive "storage" event later.
    if (currentTest.linkShouldWork) {
      return;
    }

    ok(SpecialPowers.defaultPreventedInAnyGroup(aEvent),
       currentTest.description + "The default action should be consumed because the link should work as is");
    if (SpecialPowers.defaultPreventedInAnyGroup(aEvent)) {
      // In this case, "storage" event won't be fired.
      SimpleTest.executeSoon(runNextTest);
    }
  }, false);

  SimpleTest.executeSoon(runNextTest);
}

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