diff options
Diffstat (limited to 'Source/WebCore/html/HTMLPropertiesCollection.idl')
-rw-r--r-- | Source/WebCore/html/HTMLPropertiesCollection.idl | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/Source/WebCore/html/HTMLPropertiesCollection.idl b/Source/WebCore/html/HTMLPropertiesCollection.idl index 760f53acf..05acae119 100644 --- a/Source/WebCore/html/HTMLPropertiesCollection.idl +++ b/Source/WebCore/html/HTMLPropertiesCollection.idl @@ -28,18 +28,15 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -module html { +[ + Conditional=MICRODATA, + JSGenerateToJSObject, + IndexedGetter, + NamedGetter +] interface HTMLPropertiesCollection : HTMLCollection { + readonly attribute unsigned long length; + Node item(in unsigned long index); - interface [ - Conditional=MICRODATA, - JSGenerateToJSObject, - IndexedGetter, - NamedGetter - ] HTMLPropertiesCollection : HTMLCollection { - readonly attribute unsigned long length; - Node item(in unsigned long index); - - readonly attribute DOMStringList names; - PropertyNodeList namedItem(in DOMString name); - }; -} + readonly attribute DOMStringList names; + PropertyNodeList namedItem(in DOMString name); +}; |