| 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 50dffba1ac0a72ef153e5ef2dd63cf2cefac0ffd..0cefbea03e020c5a0de127f12d5292f95712ac27 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.idl
|
| +++ b/third_party/WebKit/Source/core/dom/Element.idl
|
| @@ -35,13 +35,15 @@ interface Element : Node {
|
| [CEReactions, Reflect=class] attribute DOMString className;
|
| [SameObject, CEReactions, PerWorldBindings, PutForwards=value] readonly attribute DOMTokenList classList;
|
|
|
| - // PointerEvent (http://www.w3.org/TR/pointerevents/#extensions-to-the-element-interface)
|
| + // PointerEvent
|
| + //https://www.w3.org/TR/pointerevents/#extensions-to-the-element-interface
|
| [RuntimeEnabled=PointerEvent, RaisesException] void setPointerCapture (long pointerId);
|
| [RuntimeEnabled=PointerEvent, RaisesException] void releasePointerCapture (long pointerId);
|
| [RuntimeEnabled=PointerEvent] attribute EventHandler ongotpointercapture;
|
| [RuntimeEnabled=PointerEvent] attribute EventHandler onlostpointercapture;
|
|
|
| - // PointerEvent v2 (https://w3c.github.io/pointerevents/#extensions-to-the-element-interface)
|
| + // PointerEvent v2
|
| + // https://w3c.github.io/pointerevents/#extensions-to-the-element-interface
|
| [RuntimeEnabled=PointerEvent] boolean hasPointerCapture (long pointerId);
|
|
|
| boolean hasAttributes();
|
| @@ -79,7 +81,7 @@ interface Element : Node {
|
| [CEReactions, CustomElementCallbacks, RaisesException] void insertAdjacentHTML(DOMString position, DOMString text);
|
|
|
| // Shadow DOM
|
| - // http://w3c.github.io/webcomponents/spec/shadow/#extensions-to-element-interface
|
| + // https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-element-interface
|
| [RaisesException, CallWith=ScriptState, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadowRoot();
|
| [RaisesException, CallWith=ScriptState, MeasureAs=ElementAttachShadow] ShadowRoot attachShadow(ShadowRootInit shadowRootInitDict);
|
| NodeList getDestinationInsertionPoints();
|
| @@ -92,7 +94,7 @@ interface Element : Node {
|
| [MeasureAs=ElementRequestPointerLock] void requestPointerLock();
|
|
|
| // CSSOM View Module
|
| - // http://dev.w3.org/csswg/cssom-view/#extension-to-the-element-interface
|
| + // https://dev.w3.org/csswg/cssom-view/#extension-to-the-element-interface
|
| // FIXME: getClientRect() and getBoundingClientRect() should
|
| // return DOMRectList and DOMRect respectively.
|
| ClientRectList getClientRects();
|
|
|