Chromium Code Reviews| Index: third_party/WebKit/Source/core/frame/Window.idl |
| diff --git a/third_party/WebKit/Source/core/frame/Window.idl b/third_party/WebKit/Source/core/frame/Window.idl |
| index c4106670c87a3da72484df01b8a6638aa9b04613..bc5e96347383248e9249f6c91750941fee4ff070 100644 |
| --- a/third_party/WebKit/Source/core/frame/Window.idl |
| +++ b/third_party/WebKit/Source/core/frame/Window.idl |
| @@ -87,7 +87,7 @@ |
| [DoNotCheckSecurity, Custom, RaisesException] void postMessage(any message, DOMString targetOrigin, optional sequence<Transferable> transfer); |
| // Custom elements |
| - // http://w3c.github.io/webcomponents/spec/custom/#custom-elements-api |
| + // https://w3c.github.io/webcomponents/spec/custom/#custom-elements-api |
| [RuntimeEnabled=CustomElementsV1, CallWith=ScriptState] readonly attribute CustomElementRegistry customElements; |
| // HTML obsolete features |
| @@ -98,12 +98,12 @@ |
| [Replaceable, SameObject] readonly attribute External external; |
| // CSS Object Model (CSSOM) |
| - // http://dev.w3.org/csswg/cssom/#extensions-to-the-window-interface |
| + // https://dev.w3.org/csswg/cssom/#extensions-to-the-window-interface |
| // FIXME: The optional pseudoElt argument should have no default. |
| [NewObject] CSSStyleDeclaration getComputedStyle(Element elt, optional DOMString? pseudoElt = null); |
| // CSSOM View Module |
| - // http://dev.w3.org/csswg/cssom-view/#extensions-to-the-window-interface |
| + // https://dev.w3.org/csswg/cssom-view/#extensions-to-the-window-interface |
| [NewObject] MediaQueryList matchMedia(DOMString query); |
| [SameObject, Replaceable] readonly attribute Screen screen; |
| @@ -141,7 +141,7 @@ |
| [Replaceable] readonly attribute double devicePixelRatio; |
| // Selection API |
| - // http://w3c.github.io/selection-api/#extensions-to-window-interface |
| + // https://w3c.github.io/selection-api/#extensions-to-window-interface |
| Selection? getSelection(); |
| // Console API |
| @@ -196,16 +196,16 @@ |
| readonly attribute boolean isSecureContext; |
| }; |
| -// http://www.whatwg.org/specs/web-apps/current-work/#transferable-objects |
| +// https://www.whatwg.org/specs/web-apps/current-work/#transferable-objects |
|
foolip
2016/12/02 09:55:28
Redirects to https://html.spec.whatwg.org/#transfe
Mark Dittmer
2016/12/02 14:05:44
Done.
|
| // |
| -// Expressing the Transferable typedef in IDL depends on http://crbug.com/240176. |
| +// Expressing the Transferable typedef in IDL depends on https://crbug.com/240176. |
| // The postMessage() methods taking a Transferable array argument have custom |
| // binding code that is able to handle the Transferables that we currently |
| // recognize. To be able to declare a postMessage() signature that matches |
| // the implementation, we provide a Transferable typedef but with an |
| // incomplete type. |
| // |
| -// FIXME: make this typedef accurate once enough of http://crbug.com/240176 |
| +// FIXME: make this typedef accurate once enough of https://crbug.com/240176 |
| // is in place. |
| // FIXME: consider putting this typedef in an .idl file containing spec-wide |
| // utility type definitions. |