summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/selectors/selector-required-type-change-001.html
blob: 1d0a5a10c49faa8cbc94f7500ba1621803ab6f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
  <head>
    <title>Check for correctly updating :required matching on type change</title>
    <link rel="match" href="selector-required-type-change-001-ref.html">
    <link rel="help" href="https://drafts.csswg.org/selectors-4/#opt-pseudos">
    <style>
      span { color: green; }
      :required + span { color: red }
    </style>
    <script>
      onload = function() {
        document.querySelector("input").type = "button";
      }
    </script>
  </head>
  <body>
    <input required><span>This should be green</span>
  </body>
</html>