| 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..762ca27576d8a005cee12dd1624ade81dbaeee3a 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://html.spec.whatwg.org/#transferable-objects
|
| //
|
| -// 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.
|
|
|