summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/selectors/pseudo-classes/checked-type-change.html
blob: 661d9e4355eb46a6ea0bb64ea44daa0c9c0d2497 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Selector: pseudo-class :checked input type change</title>
<link rel="author" title="Rune Lillesveen" href="mailto:rune@opera.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/#pseudo-classes">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
  span { color: red }
  :checked + span { color: green }
</style>
<input id="checked" type="text" checked>
<span id="sibling">This text should be green.</span>
<script>
  test(() => {
    assert_equals(getComputedStyle(sibling).color, "rgb(255, 0, 0)",
      "Not matching :checked for type=text");

    checked.type = "radio";

    assert_equals(getComputedStyle(sibling).color, "rgb(0, 128, 0)",
      "Matching :checked for type=radio");
  }, "Evaluation of :checked changes on input type change.");
</script>