diff options
author | Matthew Rasmus <mattr@zzntd.com> | 2014-12-08 11:29:42 -0800 |
---|---|---|
committer | Matthew Rasmus <mattr@zzntd.com> | 2014-12-16 11:34:04 -0800 |
commit | 504f968b20b35f901f2f6af564023b2bc8aa998d (patch) | |
tree | 9a61ebc16b7d132fc61a6552d4bcb14c53a5ef68 /tests/html/test-inputs.html | |
parent | 2d05ac537cbd33c413da3516544023391d03ee82 (diff) | |
download | servo-504f968b20b35f901f2f6af564023b2bc8aa998d.tar.gz servo-504f968b20b35f901f2f6af564023b2bc8aa998d.zip |
Implements :indeterminate pseudo-class
Addresses reviews
Diffstat (limited to 'tests/html/test-inputs.html')
-rw-r--r-- | tests/html/test-inputs.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/html/test-inputs.html b/tests/html/test-inputs.html index 633bf3e23c4..455c3624eef 100644 --- a/tests/html/test-inputs.html +++ b/tests/html/test-inputs.html @@ -12,7 +12,11 @@ <div><input id=foo3 type="checkbox"></div> <div><button id=setdefault type=button>setDefaultChecked</button></div> <div><input type="submit"><input type="reset"><div> +<div><input id=ch type="checkbox" checked></div> +<div><input id=unch type="checkbox"></div> <script> +document.getElementById("ch").indeterminate = true; +document.getElementById("unch").indeterminate = true; var checkboxes = [document.getElementById("foo1"), document.getElementById("foo2"), document.getElementById("foo3")]; |