You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// t( "Attribute Exists", "[loop]", ["video1"]); // IE 6/7 cannot differentiate here. loop is also used on img, input, and marquee tags as well as video/audio. getAttributeNode unfortunately also retrieves the property value.
135
+
t("Attribute Exists","[loop]",["video1"]);
136
136
t("Attribute Exists","[multiple]",["select1"]);
137
137
t("Attribute Exists","[muted]",["audio1"]);
138
-
// t( "Attribute Exists", "[nohref]", ["area1"]); // IE 6/7 keep this set to false regardless of presence. The attribute node is not retrievable.
// t( "tabindex selector does not retrieve all elements in IE6/7(#8473)", "form, [tabindex]", ["form1", "text1"] ); // sigh, FF12 QSA mistakenly includes video elements even though they have no tabindex attribute (see https://bugzilla.mozilla.org/show_bug.cgi?id=618737)
160
+
t("tabindex selector does not retrieve all elements in IE6/7 (#8473)",
161
+
"form, [tabindex]",["form1","text1"]);
161
162
t("Improperly named form elements do not interfere with form selections (#9570)","form[name='formName']",["form1"]);
0 commit comments