CSS 3 Module | <== Test # ==> | |
---|---|---|
W3C Selectors | 181 of 182 | |
Testing | Date | Revision |
:indeterminate with :checked (ID #d5d) | 2005-10-20 | 1.2 |
NOTE: The UA must support ECMA-262 and DOM Level 2 Core for this test.
Everything in this paragraph should have a green background.
input, span { background: green; } input:indeterminate:checked, input:indeterminate:checked + span { background: red; }
<div> <script type="text/javascript"> function test() { /* Microsoft specs for .indeterminate say that this is an invalid test as an element can be both .checked and ,indeterminate; however the selectors spec says no element can be :checked:indeterminate. */ document.getElementById("test").indeterminate = true; } window.setTimeout("test()", 100); </script> <p> <input id="test" type="checkbox" checked="checked"> <span>Everything in this paragraph should have a green background.</span> </p> </div>