diff options
author | Michael Howell <michael@notriddle.com> | 2015-07-22 10:49:26 -0700 |
---|---|---|
committer | Michael Howell <michael@notriddle.com> | 2015-07-22 10:49:26 -0700 |
commit | 970f018dc8cd70254856ca702db28de892bdf947 (patch) | |
tree | d2ed6948da3e4893754c6026292571e2b7db27d8 /components/script/dom | |
parent | 91c61ae7519956ddc22240a6db262c2fadd4cd13 (diff) | |
download | servo-970f018dc8cd70254856ca702db28de892bdf947.tar.gz servo-970f018dc8cd70254856ca702db28de892bdf947.zip |
Better references.
Diffstat (limited to 'components/script/dom')
5 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/webidls/BrowserElement.webidl b/components/script/dom/webidls/BrowserElement.webidl index 27289b5a85d..e719a3b9bbb 100644 --- a/components/script/dom/webidls/BrowserElement.webidl +++ b/components/script/dom/webidls/BrowserElement.webidl @@ -4,7 +4,7 @@ * You can obtain one at http://mozilla.org/MPL/2.0/. */ -// https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/browser +// https://developer.mozilla.org/en-US/docs/Web/API/Using_the_Browser_API callback BrowserElementNextPaintEventCallback = void (); diff --git a/components/script/dom/webidls/CanvasPattern.webidl b/components/script/dom/webidls/CanvasPattern.webidl index 889682e395c..a1ddf8982c0 100644 --- a/components/script/dom/webidls/CanvasPattern.webidl +++ b/components/script/dom/webidls/CanvasPattern.webidl @@ -3,7 +3,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -// https://html.spec.whatwg.org/multipage/scripting.html#canvaspattern +// https://html.spec.whatwg.org/multipage/#canvaspattern interface CanvasPattern { //void setTransform(SVGMatrix matrix); diff --git a/components/script/dom/webidls/ErrorEvent.webidl b/components/script/dom/webidls/ErrorEvent.webidl index 670ef38685d..e56b70ebb1d 100644 --- a/components/script/dom/webidls/ErrorEvent.webidl +++ b/components/script/dom/webidls/ErrorEvent.webidl @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -// https://html.spec.whatwg.org/multipage/webappapis.html#the-errorevent-interface +// https://html.spec.whatwg.org/multipage/#the-errorevent-interface [Constructor(DOMString type, optional ErrorEventInit eventInitDict)/*, Exposed=(Window,Worker)*/] interface ErrorEvent : Event { diff --git a/components/script/dom/webidls/HTMLCollection.webidl b/components/script/dom/webidls/HTMLCollection.webidl index 693984bcbb8..d244ba5e9b1 100644 --- a/components/script/dom/webidls/HTMLCollection.webidl +++ b/components/script/dom/webidls/HTMLCollection.webidl @@ -3,7 +3,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -// http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-75708506 +// https://dom.spec.whatwg.org/#interface-htmlcollection interface HTMLCollection { readonly attribute unsigned long length; diff --git a/components/script/dom/webidls/WebSocket.webidl b/components/script/dom/webidls/WebSocket.webidl index 4233a0d50b9..5870eb953be 100644 --- a/components/script/dom/webidls/WebSocket.webidl +++ b/components/script/dom/webidls/WebSocket.webidl @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -// https://w3c.github.io/websockets/#the-websocket-interface +// https://html.spec.whatwg.org/multipage/#the-websocket-interface enum BinaryType { "blob", "arraybuffer" }; |