| 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 c5db75a480266b6198fe5e35915c348e2a1fbe67..5f3e34fcf72315ebb76bcd9ff5a9bf1411059edb 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] 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);
|
|
|