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

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: Fix frame-timing link 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..b0d619e71f48ff97299a3aa12a2c6909267c94c6 100644
--- a/third_party/WebKit/Source/core/dom/Element.idl
+++ b/third_party/WebKit/Source/core/dom/Element.idl
@@ -35,7 +35,7 @@ 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)
foolip 2016/12/02 09:55:28 Can you reformat this to have the link on its own
Mark Dittmer 2016/12/02 14:05:44 I'll do the reformat. It turns out that because I
[RuntimeEnabled=PointerEvent, RaisesException] void setPointerCapture (long pointerId);
[RuntimeEnabled=PointerEvent, RaisesException] void releasePointerCapture (long pointerId);
[RuntimeEnabled=PointerEvent] attribute EventHandler ongotpointercapture;
@@ -79,7 +79,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 +92,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