@@ -757,7 +757,7 @@ describe('selector', () => {
757757 * <input type="color">
758758 * <input type="color" value>
759759 * <input type="image">
760- * <input type="number"> <!-- value set to "1" by the user -->
760+ * <input type="number"> <!-- the user set `value` to "1" -->
761761 * <input type="radio" checked>
762762 * <input type="reset">
763763 * <input type="submit">
@@ -772,7 +772,7 @@ describe('selector', () => {
772772 * <!-- :blank -->
773773 * <input type="checkbox" disabled readonly>
774774 * <input type="checkbox" value="value">
775- * <input type="number" value="1"> <!-- value set to "" by the user -->
775+ * <input type="number" value="1"> <!-- the user set `value` to "" -->
776776 * <input type="radio">
777777 * <select value="value"></select>
778778 * <select multiple>
@@ -981,17 +981,17 @@ describe('selector', () => {
981981 * <div type="checkbox" checked="true"></div>
982982 *
983983 * <!-- :unchecked -->
984- * <input type="checkbox" checked="true"> <!-- unchecked by the user -->
985- * <input type="radio" checked="true"> <!-- unchecked by the user -->
984+ * <input type="checkbox" checked="true"> <!-- the user unchecked the input -->
985+ * <input type="radio" checked="true"> <!-- the user unchecked the input -->
986986 * <select multiple>
987- * <option selected></option> <!-- unselected by the user -->
987+ * <option selected></option> <!-- the user unselected the option -->
988988 * <option></option>
989989 * </select>
990990 *
991991 * <!-- :checked -->
992992 * <input type="checkbox" checked disabled readonly>
993- * <input type="checkbox"> <!-- checked by the user -->
994- * <input type="radio"> <!-- checked by the user -->
993+ * <input type="checkbox"> <!-- the user checked the input -->
994+ * <input type="radio"> <!-- the user checked the input -->
995995 * <select>
996996 * <option></option>
997997 * </select>
@@ -1860,8 +1860,8 @@ describe('selector', () => {
18601860 * <input type="week" value="2000-W02" max="2000-W01">
18611861 *
18621862 * <!-- :in-range -->
1863- * <input type="date" min="2000-01-01" value="1999-12-31" max="2000-01-02"> <!-- value set to empty string by the user -->
1864- * <input type="date" min="1999-12-31" max="2000-01-02"> <!-- value set to "2000-01-01" by the user -->
1863+ * <input type="date" min="2000-01-01" value="1999-12-31" max="2000-01-02"> <!-- the user set `value` to empty string -->
1864+ * <input type="date" min="1999-12-31" max="2000-01-02"> <!-- the user set `value` to "2000-01-01" -->
18651865 * <input type="date" min="2000-01-01" value="2000-01-01" max="2000-01-01">
18661866 * <input type="datetime-local" min="1999-12-31T00:00" value="2000-01-01T00:00" max="2000-01-01T00:01">
18671867 * <input type="month" min="1999-12" value="2000-01" max="2000-02">
@@ -3895,12 +3895,13 @@ describe('selector', () => {
38953895 selectors . forEach ( selector => assert . match ( selector , document . _selected . get ( selector ) , document ) )
38963896 } )
38973897 // Resource
3898+ test . todo ( ':animated-image' )
38983899 test ( ':buffering, :muted, :paused, :playing, :seeking, :stalled, :volume-locked' , ( ) => {
38993900
39003901 /**
39013902 * <html>
39023903 * <body>
3903- * <video muted="true"></video> <!-- unmuted by the user -->
3904+ * <video muted="true"></video> <!-- the user unmuted the video -->
39043905 * <video muted></video>
39053906 * <div></div>
39063907 * </body>
0 commit comments