summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/selectors/focus-visible-002.html
blob: 850645efe97d09c28ae27ae3caf9c7c355339a73 (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
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <title>CSS Test (Selectors): :focus-visible always matches on texty input elements</title>
  <meta name="timeout" content="long">
  <link rel="author" title="Alice Boxhall" href="aboxhall@chromium.org" />
  <link rel="help" href="https://drafts.csswg.org/selectors-4/#the-focus-visible-pseudo" />
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script src="/resources/testdriver.js"></script>
  <script src="/resources/testdriver-actions.js"></script>
  <script src="/resources/testdriver-vendor.js"></script>
  <style>
    @supports not selector(:focus-visible) {
      :focus {
        outline: red solid 5px;
        background-color: red;
      }
    }

    :focus-visible {
      outline: green solid 5px;
    }

    :focus:not(:focus-visible) {
      outline: 0;
      background-color: red;
    }
  </style>
</head>
<body>
  This test checks that <code>:focus-visible</code> always matches on <code>&lt;input&gt;</code> elements which take text input, regardless of focus mechanism.
  <ol id="instructions">
    <li>If the user-agent does not claim to support the <code>:focus-visible</code> pseudo-class then SKIP this test.</li>
    <li><strong>Click</strong> each form element below to focus it.</li>
    <li>If the element has a red background, then the test result is FAILURE. If the element has a green outline, then the test result is SUCCESS.</li>
  </ol>
  <br>
  <div>
    <input class="check" id="input1" value="Focus me."></input>
  </div>
  <div>
    <input class="check" id="input2" type="text" value="Focus me."></input>
  </div>
  <div>
    <input class="check" id="input3" type="email" value="Focus me."></input>
  </div>
   <div>
    <input class="check" id="input4" type="password" value="Focus me."></input>
  </div>
  <div>
    <input class="check" id="input5" type="search" value="Focus me."></input>
  </div>
  <div>
    <input class="check" id="input6" type="telephone" value="Focus me."></input>
  </div>
  <div>
    <input class="check" id="input7" type="url" value="Focus me."></input>
  </div>
  <div>
    <input class="check" id="input8" type="number" value="10000"></input>
  </div>
  <div>
    <input class="check" id="input9" type="date"></input>
  </div>
  <div>
    <input class="check" id="input10" type="datetime-local"></input>
  </div>
  <div>
    <input class="check" id="input11" type="month"></input>
  </div>
  <div>
    <input class="check" id="input12" type="time"></input>
  </div>
  <div>
    <input class="check" id="input13" type="week"></input>
  </div>
  <div>
    <textarea class="check" id="input14">Focus me.</textarea>
  </div>
  <script>
    setup({ explicit_done: true });

    const elements = document.querySelectorAll(".check");
    for (let i = 0; i < elements.length; i++) {
      const target = elements[i];
      promise_test(() => {
        return new Promise(resolve => {
          target.addEventListener("focus", resolve);
          test_driver.click(target).then(() => {
            if (i == (elements.length - 1))
              done();
          });
        }).then(() => {
          assert_equals(getComputedStyle(target).outlineColor, "rgb(0, 128, 0)", `outlineColor for ${target.tagName}#${target.id} should be green`);
          assert_not_equals(getComputedStyle(target).backgroundColor, "rgb(255, 0, 0)", `backgroundColor for ${target.tagName}#${target.id} should NOT be red`);
        });
      }, `Focus element ${target.tagName}#${target.id} via mouse should match :focus-visible as it supports keyboard input`);
    }
  </script>
</body>
</html>