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

"use strict";

// Test CSS state is correctly determined and the corresponding suggestions are
// displayed. i.e. CSS property suggestions are shown when cursor is like:
// ```style="di|"``` where | is the cursor; And CSS value suggestion is
// displayed when the cursor is like: ```style="display:n|"``` properly. No
// suggestions should ever appear when the attribute is not a style attribute.
// The correctness and cycling of the suggestions is covered in the ruleview
// tests.

loadHelperScript("helper_style_attr_test_runner.js");

const TEST_URL = URL_ROOT + "doc_markup_edit.html";

// test data format :
//  [
//    what key to press,
//    expected input box value after keypress,
//    expected input.selectionStart,
//    expected input.selectionEnd,
//    is popup expected to be open ?
//  ]
const TEST_DATA = [
  ["s", "s", 1, 1, false],
  ["t", "st", 2, 2, false],
  ["y", "sty", 3, 3, false],
  ["l", "styl", 4, 4, false],
  ["e", "style", 5, 5, false],
  ["=", "style=", 6, 6, false],
  ["\"", "style=\"", 7, 7, false],
  ["d", "style=\"display", 8, 14, true],
  ["VK_TAB", "style=\"display", 14, 14, true],
  ["VK_TAB", "style=\"dominant-baseline", 24, 24, true],
  ["VK_TAB", "style=\"direction", 16, 16, true],
  ["click_1", "style=\"display", 14, 14, false],
  [":", "style=\"display:block", 15, 20, true],
  ["n", "style=\"display:none", 16, 19, false],
  ["VK_BACK_SPACE", "style=\"display:n", 16, 16, false],
  ["VK_BACK_SPACE", "style=\"display:", 15, 15, false],
  [" ", "style=\"display: block", 16, 21, true],
  [" ", "style=\"display:  block", 17, 22, true],
  ["i", "style=\"display:  inherit", 18, 24, true],
  ["VK_RIGHT", "style=\"display:  inherit", 24, 24, false],
  [";", "style=\"display:  inherit;", 25, 25, false],
  [" ", "style=\"display:  inherit; ", 26, 26, false],
  [" ", "style=\"display:  inherit;  ", 27, 27, false],
  ["VK_LEFT", "style=\"display:  inherit;  ", 26, 26, false],
  ["c", "style=\"display:  inherit; color ", 27, 31, true],
  ["VK_RIGHT", "style=\"display:  inherit; color ", 31, 31, false],
  [" ", "style=\"display:  inherit; color  ", 32, 32, false],
  ["c", "style=\"display:  inherit; color c ", 33, 33, false],
  ["VK_BACK_SPACE", "style=\"display:  inherit; color  ", 32, 32, false],
  [":", "style=\"display:  inherit; color :aliceblue ", 33, 42, true],
  ["c", "style=\"display:  inherit; color :cadetblue ", 34, 42, true],
  ["VK_DOWN", "style=\"display:  inherit; color :chartreuse ", 34, 43, true],
  ["VK_RIGHT", "style=\"display:  inherit; color :chartreuse ", 43, 43, false],
  [" ", "style=\"display:  inherit; color :chartreuse aliceblue ",
   44, 53, true],
  ["!", "style=\"display:  inherit; color :chartreuse !important; ",
   45, 55, false],
  ["VK_RIGHT", "style=\"display:  inherit; color :chartreuse !important; ",
   55, 55, false],
  ["VK_RETURN", "style=\"display:  inherit; color :chartreuse !important;\"",
   -1, -1, false]
];

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

  yield runStyleAttributeAutocompleteTests(inspector, TEST_DATA);
});