summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/markup/test/browser_markup_keybindings_01.js
blob: 58eccc173c653b987a3af1cf5ea6972c08622373 (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
/* vim: set ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

requestLongerTimeout(2);

// Tests tabbing through attributes on a node

const TEST_URL = "data:text/html;charset=utf8,<div id='test' a b c d e></div>";

add_task(function* () {
  let {inspector} = yield openInspectorForURL(TEST_URL);

  info("Focusing the tag editor of the test element");
  let {editor} = yield focusNode("div", inspector);
  editor.tag.focus();

  info("Pressing tab and expecting to focus the ID attribute, always first");
  EventUtils.sendKey("tab", inspector.panelWin);
  checkFocusedAttribute("id");

  info("Hit enter to turn the attribute to edit mode");
  EventUtils.sendKey("return", inspector.panelWin);
  checkFocusedAttribute("id", true);

  // Check the order of the other attributes in the DOM to the check they appear
  // correctly in the markup-view
  let attributes = (yield getAttributesFromEditor("div", inspector)).slice(1);

  info("Tabbing forward through attributes in edit mode");
  for (let attribute of attributes) {
    collapseSelectionAndTab(inspector);
    checkFocusedAttribute(attribute, true);
  }

  info("Tabbing backward through attributes in edit mode");

  // Just reverse the attributes other than id and remove the first one since
  // it's already focused now.
  let reverseAttributes = attributes.reverse();
  reverseAttributes.shift();

  for (let attribute of reverseAttributes) {
    collapseSelectionAndShiftTab(inspector);
    checkFocusedAttribute(attribute, true);
  }
});