| Index: third_party/WebCore/dom/PropertyNodeList.idl
|
| diff --git a/third_party/WebCore/html/HTMLPropertiesCollection.idl b/third_party/WebCore/dom/PropertyNodeList.idl
|
| similarity index 82%
|
| copy from third_party/WebCore/html/HTMLPropertiesCollection.idl
|
| copy to third_party/WebCore/dom/PropertyNodeList.idl
|
| index d2c8e31275ec9f3f656dce1cec860f8e2f642265..97f5637b384773bee7e56415162eb31aaa430981 100644
|
| --- a/third_party/WebCore/html/HTMLPropertiesCollection.idl
|
| +++ b/third_party/WebCore/dom/PropertyNodeList.idl
|
| @@ -1,5 +1,5 @@
|
| /*
|
| - * Copyright (c) 2011 Motorola Mobility, Inc. All rights reserved.
|
| + * Copyright (c) 2012 Motorola Mobility, Inc. All rights reserved.
|
| *
|
| * Redistribution and use in source and binary forms, with or without modification,
|
| * are permitted provided that the following conditions are met:
|
| @@ -28,20 +28,17 @@
|
| * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -module html {
|
| +module core {
|
|
|
| interface [
|
| Conditional=MICRODATA,
|
| - JSGenerateToJSObject,
|
| IndexedGetter,
|
| - NamedGetter
|
| - ] HTMLPropertiesCollection : HTMLCollection {
|
| - readonly attribute unsigned long length;
|
| - Node item(in unsigned long index);
|
| + JSGenerateToJSObject
|
| + ] PropertyNodeList : NodeList {
|
|
|
| - readonly attribute DOMStringList names;
|
| + sequence<MicroDataItemValue> getValues();
|
| + Node item(in unsigned long index);
|
|
|
| - // FIXME: HTML5 specifies that this should return PropertyNodeList.
|
| - NodeList namedItem(in DOMString name);
|
| + readonly attribute unsigned long length;
|
| };
|
| }
|
|
|