| Index: third_party/WebKit/Source/core/dom/Element.idl
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.idl b/third_party/WebKit/Source/core/dom/Element.idl
|
| index a516e09035e682ac49bb19b03416d2f4aae515df..4d55f556cb8cc1347b96ceae104c5a23da65369c 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.idl
|
| +++ b/third_party/WebKit/Source/core/dom/Element.idl
|
| @@ -35,6 +35,10 @@ interface Element : Node {
|
| [Reflect=class] attribute DOMString className;
|
| [SameObject, PerWorldBindings, PutForwards=value] readonly attribute DOMTokenList classList;
|
|
|
| + // PointerEvent (http://www.w3.org/TR/pointerevents/#extensions-to-the-element-interface)
|
| + [RuntimeEnabled=PointerEvent, RaisesException] void setPointerCapture (long pointerId);
|
| + [RuntimeEnabled=PointerEvent, RaisesException] void releasePointerCapture (long pointerId);
|
| +
|
| [MeasureAs=HasAttributes] boolean hasAttributes();
|
| [SameObject, PerWorldBindings, ImplementedAs=attributesForBindings] readonly attribute NamedNodeMap attributes;
|
| DOMString? getAttribute(DOMString name);
|
|
|