Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(579)

Unified Diff: third_party/WebKit/Source/core/dom/Element.idl

Issue 2549633002: rewrite spec links with http: to https: and fix known Javascript redirected links (Closed)
Patch Set: Address all code review comments; mostly rewrite incorrectly-anchored links Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698