blob: bd4137c1b5808f1d469adeaea5e0bc9bb0b7afff (
plain)
1
2
3
4
5
6
7
|
<!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>
|