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

Unified Diff: third_party/WebKit/Source/core/html/HTMLLinkElement.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/html/HTMLLinkElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.idl b/third_party/WebKit/Source/core/html/HTMLLinkElement.idl
index 65eead0e2ebb41e1089f0c879bdd69e0d99b2c57..8a98ffe11e87ec3aecb9676949add1957e1608de 100644
--- a/third_party/WebKit/Source/core/html/HTMLLinkElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.idl
@@ -42,7 +42,7 @@ interface HTMLLinkElement : HTMLElement {
[CEReactions, Reflect] attribute DOMString target;
// HTMLLinkElement implements LinkStyle
- // http://dev.w3.org/csswg/cssom/#the-linkstyle-interface
+ // https://dev.w3.org/csswg/cssom/#the-linkstyle-interface
readonly attribute StyleSheet? sheet;
// HTML Imports
@@ -50,10 +50,10 @@ interface HTMLLinkElement : HTMLElement {
readonly attribute Document? import;
// Subresource Integrity
- // http://w3c.github.io/webappsec/specs/subresourceintegrity/#htmllinkelement-1
+ // https://w3c.github.io/webappsec-subresource-integrity/#HTMLLinkElement
[Reflect] attribute DOMString integrity;
// Service workers
- // http://mkruisselbrink.github.io/ServiceWorker/spec/service_worker/#link-element-interface-section
+ // https://w3c.github.io/ServiceWorker/#link-element-interface-extensions
[Reflect, OriginTrialEnabled=LinkServiceWorker] attribute USVString scope;
};

Powered by Google App Engine
This is Rietveld 408576698