| Index: third_party/WebKit/Source/core/dom/Document.idl
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.idl b/third_party/WebKit/Source/core/dom/Document.idl
|
| index b9ee23108dc5d5e0e81f825951992d97d3f9f648..a5422d5bfb935262c2cac0e5cf2b6bfafba274da 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.idl
|
| +++ b/third_party/WebKit/Source/core/dom/Document.idl
|
| @@ -103,12 +103,12 @@ interface Document : Node {
|
| [CustomElementCallbacks] attribute DOMString dir;
|
| [RaisesException=Setter, CustomElementCallbacks, PerWorldBindings] attribute HTMLElement? body;
|
| readonly attribute HTMLHeadElement? head;
|
| - [SameObject] readonly attribute HTMLCollection images;
|
| - [SameObject] readonly attribute HTMLCollection embeds;
|
| - [SameObject, ImplementedAs=embeds] readonly attribute HTMLCollection plugins;
|
| - [SameObject] readonly attribute HTMLCollection links;
|
| - [SameObject] readonly attribute HTMLCollection forms;
|
| - [SameObject] readonly attribute HTMLCollection scripts;
|
| + [SameObject, Measure] readonly attribute HTMLCollection images;
|
| + [SameObject, Measure] readonly attribute HTMLCollection embeds;
|
| + [SameObject, ImplementedAs=embeds, Measure] readonly attribute HTMLCollection plugins;
|
| + [SameObject, Measure] readonly attribute HTMLCollection links;
|
| + [SameObject, Measure] readonly attribute HTMLCollection forms;
|
| + [SameObject, Measure] readonly attribute HTMLCollection scripts;
|
| [PerWorldBindings] NodeList getElementsByName(DOMString elementName);
|
| [ImplementedAs=currentScriptForBinding] readonly attribute HTMLScriptElement? currentScript;
|
|
|
| @@ -137,8 +137,8 @@ interface Document : Node {
|
|
|
| // FIXME: *Color are on HTMLDocument.
|
|
|
| - readonly attribute HTMLCollection anchors;
|
| - readonly attribute HTMLCollection applets;
|
| + [Measure] readonly attribute HTMLCollection anchors;
|
| + [Measure] readonly attribute HTMLCollection applets;
|
|
|
| // FIXME: clear(), captureEvents(), releaseEvents() and all are on HTMLDocument.
|
|
|
|
|