summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/markup/test/browser_markup_events_object_listener.js
blob: d139a5d9c32ae0327bfb418ae6f4c6a0a91daebb (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
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */
/* import-globals-from helper_events_test_runner.js */

"use strict";

// Test that markup view event bubbles show the correct event info for object
// style event listeners and that no bubbles are shown for objects without any
// handleEvent method.

const TEST_URL = URL_ROOT_SSL + "doc_markup_events_object_listener.html";

loadHelperScript("helper_events_test_runner.js");

const TEST_DATA = [
  // eslint-disable-line
  {
    selector: "#valid-object-listener",
    expected: [
      {
        type: "click",
        filename: TEST_URL + ":20:23",
        attributes: ["Bubbling"],
        handler: `() => {\n` + `  console.log("handleEvent");\n` + `}`,
      },
    ],
  },
  {
    selector: "#valid-invalid-object-listeners",
    expected: [
      {
        type: "click",
        filename: TEST_URL + ":27:23",
        attributes: ["Bubbling"],
        handler: `() => {\n` + `  console.log("handleEvent");\n` + `}`,
      },
    ],
  },
];

add_task(async function () {
  await runEventPopupTests(TEST_URL, TEST_DATA);
});