summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/markup/test/browser_markup_navigation.js
blob: f6a408f10ce05246abb07c718108f9e42a6ac0ad (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test that the markup-view nodes can be navigated to with the keyboard

const TEST_URL = URL_ROOT + "doc_markup_navigation.html";
const TEST_DATA = [
  ["KEY_PageUp", "*doctype*"],
  ["KEY_ArrowDown", "html"],
  ["KEY_ArrowDown", "head"],
  ["KEY_ArrowDown", "body"],
  ["KEY_ArrowDown", "node0"],
  ["KEY_ArrowRight", "node0"],
  ["KEY_ArrowDown", "node1"],
  ["KEY_ArrowDown", "node2"],
  ["KEY_ArrowDown", "node3"],
  ["KEY_ArrowDown", "*comment*"],
  ["KEY_ArrowDown", "node4"],
  ["KEY_ArrowRight", "node4"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node5"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node6"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "*comment*"],
  ["KEY_ArrowDown", "node7"],
  ["KEY_ArrowRight", "node7"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node8"],
  ["KEY_ArrowLeft", "node7"],
  ["KEY_ArrowLeft", "node7"],
  ["KEY_ArrowRight", "node7"],
  ["KEY_ArrowRight", "*text*"],
  ["KEY_ArrowDown", "node8"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node9"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node10"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node11"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node12"],
  ["KEY_ArrowRight", "node12"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node13"],
  ["KEY_ArrowDown", "node14"],
  ["KEY_ArrowDown", "node15"],
  ["KEY_ArrowDown", "node15"],
  ["KEY_ArrowDown", "node15"],
  ["KEY_ArrowUp", "node14"],
  ["KEY_ArrowUp", "node13"],
  ["KEY_ArrowUp", "*text*"],
  ["KEY_ArrowUp", "node12"],
  ["KEY_ArrowLeft", "node12"],
  ["KEY_ArrowDown", "node14"],
  ["KEY_Home", "*doctype*"],
  ["KEY_PageDown", "*text*"],
  ["KEY_ArrowDown", "node5"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node6"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "*comment*"],
  ["KEY_ArrowDown", "node7"],
  ["KEY_ArrowLeft", "node7"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node9"],
  ["KEY_ArrowDown", "*text*"],
  ["KEY_ArrowDown", "node10"],
  ["KEY_PageUp", "*text*"],
  ["KEY_PageUp", "*doctype*"],
  ["KEY_ArrowDown", "html"],
  ["KEY_ArrowLeft", "html"],
  ["KEY_ArrowDown", "head"],
];

add_task(async function () {
  const { inspector } = await openInspectorForURL(TEST_URL);

  info("Making sure the markup-view frame is focused");
  inspector.markup._frame.focus();

  info("Starting to iterate through the test data");
  for (const [key, className] of TEST_DATA) {
    info("Testing step: " + key + " to navigate to " + className);
    EventUtils.synthesizeKey(key);

    info("Making sure markup-view children get updated");
    await waitForChildrenUpdated(inspector);

    info("Checking the right node is selected");
    checkSelectedNode(key, className, inspector);
  }

  // In theory, we should wait for the inspector-updated event at each iteration
  // of the previous loop where we expect the current node to change (because
  // changing the current node ends up refreshing the rule-view, breadcrumbs,
  // ...), but this would make this test a *lot* slower. Instead, having a final
  // catch-all event works too.
  await inspector.once("inspector-updated");
});

function checkSelectedNode(key, className, inspector) {
  const node = inspector.selection.nodeFront;

  if (className == "*comment*") {
    is(
      node.nodeType,
      Node.COMMENT_NODE,
      "Found a comment after pressing " + key
    );
  } else if (className == "*text*") {
    is(node.nodeType, Node.TEXT_NODE, "Found text after pressing " + key);
  } else if (className == "*doctype*") {
    is(
      node.nodeType,
      Node.DOCUMENT_TYPE_NODE,
      "Found the doctype after pressing " + key
    );
  } else {
    is(
      node.className,
      className,
      "Found node: " + className + " after pressing " + key
    );
  }
}