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

"use strict";

// Tests that selecting a node with the mouse (by clicking on the line) focuses
// the first focusable element in the corresponding MarkupContainer so that the
// keyboard can be used immediately.

const TEST_URL = `data:text/html;charset=utf8,
                  <div class='test-class'></div>Text node`;

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

  info("Select the test node to have the 2 test containers visible");
  await selectNode("div", inspector);

  const divFront = await walker.querySelector(walker.rootNode, "div");
  const textFront = await walker.nextSibling(divFront);

  info("Click on the MarkupContainer element for the text node");
  await clickContainer(textFront, inspector);
  is(
    inspector.markup.doc.activeElement,
    getContainerForNodeFront(textFront, inspector).editor.textNode.valuePreRef
      .current,
    "The currently focused element is the node's text content"
  );

  info("Click on the MarkupContainer element for the <div> node");
  await clickContainer(divFront, inspector);
  is(
    inspector.markup.doc.activeElement,
    getContainerForNodeFront(divFront, inspector).editor.tag,
    "The currently focused element is the div's tagname"
  );

  info("Click on the test-class attribute, to make sure it gets focused");
  const editor = getContainerForNodeFront(divFront, inspector).editor;
  const attributeEditor = editor.attrElements
    .get("class")
    .querySelector(".editable");

  const onFocus = once(attributeEditor, "focus");
  EventUtils.synthesizeMouseAtCenter(
    attributeEditor,
    { type: "mousedown" },
    inspector.markup.doc.defaultView
  );
  EventUtils.synthesizeMouseAtCenter(
    attributeEditor,
    { type: "mouseup" },
    inspector.markup.doc.defaultView
  );
  await onFocus;

  is(
    inspector.markup.doc.activeElement,
    attributeEditor,
    "The currently focused element is the div's class attribute"
  );
});