2.1.4 [HTML5:2014] Section 2.7.2.1 HTMLAllCollection

V0011: The HTMLAllCollection interface is not defined

The specification states:

 2.7.2.1 HTMLAllCollection
     ...
     interface HTMLAllCollection : HTMLCollection {
         ...
     };

IE9 Mode, IE8 Mode, IE7 Mode, and IE5 (Quirks) Mode (All versions)

The HTMLAllCollection interface is not defined.

V0009: The namedItem function does not return an HTMLCollection

The specification states:

 2.7.2.1 HTMLAllCollection
     ...
     interface HTMLAllCollection : HTMLCollection {
         ...
         legacycaller getter (HTMLCollection or Element)? namedItem(DOMString name);       
          ...
     };

IE11 Mode, IE10 Mode, IE9 Mode, IE8 Mode, IE7 Mode, and IE5 (Quirks) Mode (All versions)

The namedItem function does not return an HTMLCollection if there are multiple matching items and only returns a single Element.

V0008: The item function does not return an HTMLCollection

The specification states:

 2.7.2.1 HTMLAllCollection
  
     interface HTMLAllCollection : HTMLCollection {
         ...
         (HTMLCollection or Element)? item(DOMString name);
         ...
     };

IE11 Mode, IE10 Mode, IE9 Mode, IE8 Mode, IE7 Mode, and IE5 (Quirks) Mode (All versions)

The item function does not return an HTMLCollection if there are multiple matching items and only returns a single Element.

V0010: The item attribute is not specified on the HTMLAllCollection instance

The specification states:

 2.7.2.1 HTMLAllCollection
     ...
     interface HTMLAllCollection : HTMLCollection {
         ...
         (HTMLCollection or Element)? item(DOMString name);
         ...
     };

IE11 Mode, IE10 Mode, IE9 Mode, IE8 Mode, IE7 Mode, and IE5 (Quirks) Mode (All versions)

The item attribute is not specified on the HTMLAllCollection instance but is defined on the interface HTMLCollection.

V0007: The tags attribute is not supported

The specification states:

 2.7.2.1 HTMLAllCollection
     ...
     interface HTMLAllCollection : HTMLCollection {
         ...
         HTMLAllCollection tags(DOMString tagName);
     };

IE11 Mode, IE10 Mode, and IE9 Mode (All versions)

The tags attribute is not supported.