7 lines
294 B
HTML
7 lines
294 B
HTML
<!doctype html>
|
|
<title>Checkbox with switch attribute set does not render differently when the indeterminate attribute is set</title>
|
|
<link rel=match href="input-checkbox-switch-indeterminate-ref.html">
|
|
<input id="input" type=checkbox switch>
|
|
<script>
|
|
input.indeterminate = true;
|
|
</script>
|