summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/selectors/pseudo-classes/indeterminate-radio-group-ref.html
blob: 68d95fe240cc58c9d9b5e7ab1e9ec8b17c62305d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<meta charset="utf-8">
<title>Test reference</title>
<style>
label[for="two"] {
  background: green;
}
</style>
<form>
  <input type="radio" name="a" id="one" value="1">
  <label for="one">One</label>

  <input type="radio" name="a" id="two" value="2" checked>
  <label for="two">Two</label>

  <input type="radio" name="a" id="three" value="3">
  <label for="three">Three</label>

  <input type="radio" name="a" id="four" value="4">
  <label for="four">Four</label>
</form>