summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/selectors/selector-read-write-type-change-002.html
blob: 491a01ba6cf7345526bf588c6a74c6324f72e0b0 (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
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <title>Check for correctly updating :read-write matching on type change</title>
    <link rel="match" href="selector-read-write-type-change-002-ref.html">
    <link rel="help" href="https://drafts.csswg.org/selectors-4/#rw-pseudos">
    <style>
      span { color: red; }
      :read-write + span { color: green }
    </style>
    <script>
      onload = function() {
        // setTimeout because in some browsers apparently a toplevel restyle
        // happens right after the load event fires?
        setTimeout(function() {
          document.querySelector("input").type = "";
          document.documentElement.className = "";
        }, 10);
      }
    </script>
  </head>
  <body>
    <input type="hidden" required><span>This should be green</span>
  </body>
</html>