diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-10-10 11:55:09 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-10-10 11:55:09 -0400 |
commit | 85f2b6fc5bd3d51ebb7a091fe2776fdd1cfbbb33 (patch) | |
tree | 897db3185c292d272aa7794581d8e5a901b13df9 /components/script/dom/webidls | |
parent | 9cccd98254191b1663dcaee9010eee63fa8074a3 (diff) | |
download | servo-85f2b6fc5bd3d51ebb7a091fe2776fdd1cfbbb33.tar.gz servo-85f2b6fc5bd3d51ebb7a091fe2776fdd1cfbbb33.zip |
Replace usage of old-style WHATWG spec links
Diffstat (limited to 'components/script/dom/webidls')
84 files changed, 121 insertions, 121 deletions
diff --git a/components/script/dom/webidls/CanvasRenderingContext2D.webidl b/components/script/dom/webidls/CanvasRenderingContext2D.webidl index 295fc2fb3b7..9b336d238e2 100644 --- a/components/script/dom/webidls/CanvasRenderingContext2D.webidl +++ b/components/script/dom/webidls/CanvasRenderingContext2D.webidl @@ -5,7 +5,7 @@ enum CanvasWindingRule { "nonzero", "evenodd" }; -// https://www.whatwg.org/html/#2dcontext +// https://html.spec.whatwg.org/multipage#2dcontext typedef (HTMLImageElement or /* HTMLVideoElement or */ HTMLCanvasElement or diff --git a/components/script/dom/webidls/DedicatedWorkerGlobalScope.webidl b/components/script/dom/webidls/DedicatedWorkerGlobalScope.webidl index 93727f5f60e..2d8efa6b3ef 100644 --- a/components/script/dom/webidls/DedicatedWorkerGlobalScope.webidl +++ b/components/script/dom/webidls/DedicatedWorkerGlobalScope.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://www.whatwg.org/html/#dedicatedworkerglobalscope +// https://html.spec.whatwg.org/multipage#dedicatedworkerglobalscope [Global/*=Worker,DedicatedWorker*/] /*sealed*/ interface DedicatedWorkerGlobalScope : WorkerGlobalScope { [Throws] diff --git a/components/script/dom/webidls/Document.webidl b/components/script/dom/webidls/Document.webidl index 75b209d9c5e..590c96c4768 100644 --- a/components/script/dom/webidls/Document.webidl +++ b/components/script/dom/webidls/Document.webidl @@ -5,7 +5,7 @@ /* * The origin of this IDL file is: * https://dom.spec.whatwg.org/#interface-document - * https://www.whatwg.org/specs/web-apps/current-work/#the-document-object + * https://html.spec.whatwg.org/multipage#the-document-object */ // https://dom.spec.whatwg.org/#interface-document @@ -75,7 +75,7 @@ Document implements ParentNode; enum DocumentReadyState { "loading", "interactive", "complete" }; -// https://www.whatwg.org/specs/web-apps/current-work/#the-document-object +// https://html.spec.whatwg.org/multipage#the-document-object // [OverrideBuiltins] partial /*sealed*/ interface Document { // resource metadata management diff --git a/components/script/dom/webidls/EventHandler.webidl b/components/script/dom/webidls/EventHandler.webidl index c1a210a06e0..3121b18ce64 100644 --- a/components/script/dom/webidls/EventHandler.webidl +++ b/components/script/dom/webidls/EventHandler.webidl @@ -4,7 +4,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* * The origin of this IDL file is - * https://www.whatwg.org/specs/web-apps/current-work/#eventhandler + * https://html.spec.whatwg.org/multipage#eventhandler * * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and * Opera Software ASA. You are granted a license to use, reproduce diff --git a/components/script/dom/webidls/Function.webidl b/components/script/dom/webidls/Function.webidl index 511563de0d3..1706b1c57ca 100644 --- a/components/script/dom/webidls/Function.webidl +++ b/components/script/dom/webidls/Function.webidl @@ -4,7 +4,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* * The origin of this IDL file is - * https://www.whatwg.org/specs/web-apps/current-work/#functiocn + * https://heycam.github.io/webidl/#common-Function * * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and * Opera Software ASA. You are granted a license to use, reproduce diff --git a/components/script/dom/webidls/HTMLAnchorElement.webidl b/components/script/dom/webidls/HTMLAnchorElement.webidl index 7129f0ad1ed..4154a2fb042 100644 --- a/components/script/dom/webidls/HTMLAnchorElement.webidl +++ b/components/script/dom/webidls/HTMLAnchorElement.webidl @@ -4,14 +4,14 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* * The origin of this IDL file is - * https://www.whatwg.org/specs/web-apps/current-work/#the-a-element - * https://www.whatwg.org/specs/web-apps/current-work/#other-elements,-attributes-and-apis + * https://html.spec.whatwg.org/multipage#the-a-element + * https://html.spec.whatwg.org/multipage#other-elements,-attributes-and-apis * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and * Opera Software ASA. You are granted a license to use, reproduce * and create derivative works of this document. */ -// https://www.whatwg.org/html/#htmlanchorelement +// https://html.spec.whatwg.org/multipage#htmlanchorelement interface HTMLAnchorElement : HTMLElement { // attribute DOMString target; // attribute DOMString download; @@ -28,7 +28,7 @@ interface HTMLAnchorElement : HTMLElement { }; //HTMLAnchorElement implements URLUtils; -// https://www.whatwg.org/html/#HTMLAnchorElement-partial +// https://html.spec.whatwg.org/multipage#HTMLAnchorElement-partial partial interface HTMLAnchorElement { attribute DOMString coords; // attribute DOMString charset; diff --git a/components/script/dom/webidls/HTMLAppletElement.webidl b/components/script/dom/webidls/HTMLAppletElement.webidl index b7f6350de53..d454367828d 100644 --- a/components/script/dom/webidls/HTMLAppletElement.webidl +++ b/components/script/dom/webidls/HTMLAppletElement.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://www.whatwg.org/html/#htmlappletelement +// https://html.spec.whatwg.org/multipage#htmlappletelement interface HTMLAppletElement : HTMLElement { // attribute DOMString align; // attribute DOMString alt; diff --git a/components/script/dom/webidls/HTMLAreaElement.webidl b/components/script/dom/webidls/HTMLAreaElement.webidl index 1f13c0ffa25..c4d422b56df 100644 --- a/components/script/dom/webidls/HTMLAreaElement.webidl +++ b/components/script/dom/webidls/HTMLAreaElement.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://www.whatwg.org/html/#htmlareaelement +// https://html.spec.whatwg.org/multipage#htmlareaelement interface HTMLAreaElement : HTMLElement { // attribute DOMString alt; // attribute DOMString coords; @@ -20,7 +20,7 @@ interface HTMLAreaElement : HTMLElement { }; //HTMLAreaElement implements URLUtils; -// https://www.whatwg.org/html/#HTMLAreaElement-partial +// https://html.spec.whatwg.org/multipage#HTMLAreaElement-partial partial interface HTMLAreaElement { // attribute boolean noHref; }; diff --git a/components/script/dom/webidls/HTMLAudioElement.webidl b/components/script/dom/webidls/HTMLAudioElement.webidl index d3e685e43ab..0da38db6057 100644 --- a/components/script/dom/webidls/HTMLAudioElement.webidl +++ b/components/script/dom/webidls/HTMLAudioElement.webidl @@ -3,6 +3,6 @@ * 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://www.whatwg.org/html/#htmlaudioelement +// https://html.spec.whatwg.org/multipage#htmlaudioelement //[NamedConstructor=Audio(optional DOMString src)] interface HTMLAudioElement : HTMLMediaElement {}; diff --git a/components/script/dom/webidls/HTMLBRElement.webidl b/components/script/dom/webidls/HTMLBRElement.webidl index eba2470d6f8..b30a1c89103 100644 --- a/components/script/dom/webidls/HTMLBRElement.webidl +++ b/components/script/dom/webidls/HTMLBRElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmlbrelement +// https://html.spec.whatwg.org/multipage#htmlbrelement interface HTMLBRElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLBRElement-partial +// https://html.spec.whatwg.org/multipage#HTMLBRElement-partial partial interface HTMLBRElement { // attribute DOMString clear; }; diff --git a/components/script/dom/webidls/HTMLBaseElement.webidl b/components/script/dom/webidls/HTMLBaseElement.webidl index 8b744b49812..9f4f61675f2 100644 --- a/components/script/dom/webidls/HTMLBaseElement.webidl +++ b/components/script/dom/webidls/HTMLBaseElement.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://www.whatwg.org/html/#htmlbaseelement +// https://html.spec.whatwg.org/multipage#htmlbaseelement interface HTMLBaseElement : HTMLElement { // attribute DOMString href; // attribute DOMString target; diff --git a/components/script/dom/webidls/HTMLBodyElement.webidl b/components/script/dom/webidls/HTMLBodyElement.webidl index baf9a106e2a..7a77df6d759 100644 --- a/components/script/dom/webidls/HTMLBodyElement.webidl +++ b/components/script/dom/webidls/HTMLBodyElement.webidl @@ -9,7 +9,7 @@ interface HTMLBodyElement : HTMLElement { }; HTMLBodyElement implements WindowEventHandlers; -// https://www.whatwg.org/html/#HTMLBodyElement-partial +// https://html.spec.whatwg.org/multipage#HTMLBodyElement-partial partial interface HTMLBodyElement { [TreatNullAs=EmptyString] attribute DOMString text; //[TreatNullAs=EmptyString] attribute DOMString link; diff --git a/components/script/dom/webidls/HTMLButtonElement.webidl b/components/script/dom/webidls/HTMLButtonElement.webidl index 73eec85a198..5adeab92f71 100644 --- a/components/script/dom/webidls/HTMLButtonElement.webidl +++ b/components/script/dom/webidls/HTMLButtonElement.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://www.whatwg.org/html/#htmlbuttonelement +// https://html.spec.whatwg.org/multipage#htmlbuttonelement interface HTMLButtonElement : HTMLElement { // attribute boolean autofocus; attribute boolean disabled; diff --git a/components/script/dom/webidls/HTMLCanvasElement.webidl b/components/script/dom/webidls/HTMLCanvasElement.webidl index cb2bea70d76..7e01b486164 100644 --- a/components/script/dom/webidls/HTMLCanvasElement.webidl +++ b/components/script/dom/webidls/HTMLCanvasElement.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://www.whatwg.org/html/#htmlcanvaselement +// https://html.spec.whatwg.org/multipage#htmlcanvaselement typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext; interface HTMLCanvasElement : HTMLElement { diff --git a/components/script/dom/webidls/HTMLDListElement.webidl b/components/script/dom/webidls/HTMLDListElement.webidl index 22c7288349e..599a5a02038 100644 --- a/components/script/dom/webidls/HTMLDListElement.webidl +++ b/components/script/dom/webidls/HTMLDListElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmldlistelement +// https://html.spec.whatwg.org/multipage#htmldlistelement interface HTMLDListElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLDListElement-partial +// https://html.spec.whatwg.org/multipage#HTMLDListElement-partial partial interface HTMLDListElement { // attribute boolean compact; }; diff --git a/components/script/dom/webidls/HTMLDataElement.webidl b/components/script/dom/webidls/HTMLDataElement.webidl index 48f8a5a85f4..8c3e244fdaa 100644 --- a/components/script/dom/webidls/HTMLDataElement.webidl +++ b/components/script/dom/webidls/HTMLDataElement.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://www.whatwg.org/html/#htmldataelement +// https://html.spec.whatwg.org/multipage#htmldataelement interface HTMLDataElement : HTMLElement { // attribute DOMString value; }; diff --git a/components/script/dom/webidls/HTMLDataListElement.webidl b/components/script/dom/webidls/HTMLDataListElement.webidl index 4e9eaa3ce0f..e65b310fb06 100644 --- a/components/script/dom/webidls/HTMLDataListElement.webidl +++ b/components/script/dom/webidls/HTMLDataListElement.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://www.whatwg.org/html/#htmldatalistelement +// https://html.spec.whatwg.org/multipage#htmldatalistelement interface HTMLDataListElement : HTMLElement { readonly attribute HTMLCollection options; }; diff --git a/components/script/dom/webidls/HTMLDialogElement.webidl b/components/script/dom/webidls/HTMLDialogElement.webidl index aa78cb38aea..dc6e79f02b8 100644 --- a/components/script/dom/webidls/HTMLDialogElement.webidl +++ b/components/script/dom/webidls/HTMLDialogElement.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://www.whatwg.org/html/#htmldialogelement +// https://html.spec.whatwg.org/multipage#htmldialogelement interface HTMLDialogElement : HTMLElement { attribute boolean open; attribute DOMString returnValue; diff --git a/components/script/dom/webidls/HTMLDirectoryElement.webidl b/components/script/dom/webidls/HTMLDirectoryElement.webidl index 56507d5b442..4ae5d65892c 100644 --- a/components/script/dom/webidls/HTMLDirectoryElement.webidl +++ b/components/script/dom/webidls/HTMLDirectoryElement.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://www.whatwg.org/html/#htmldirectoryelement +// https://html.spec.whatwg.org/multipage#htmldirectoryelement interface HTMLDirectoryElement : HTMLElement { // attribute boolean compact; }; diff --git a/components/script/dom/webidls/HTMLDivElement.webidl b/components/script/dom/webidls/HTMLDivElement.webidl index 1e1319fe573..eb57765ad3d 100644 --- a/components/script/dom/webidls/HTMLDivElement.webidl +++ b/components/script/dom/webidls/HTMLDivElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmldivelement +// https://html.spec.whatwg.org/multipage#htmldivelement interface HTMLDivElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLDivElement-partial +// https://html.spec.whatwg.org/multipage#HTMLDivElement-partial partial interface HTMLDivElement { // attribute DOMString align; }; diff --git a/components/script/dom/webidls/HTMLElement.webidl b/components/script/dom/webidls/HTMLElement.webidl index 90b11d85bff..d3d107a5bfa 100644 --- a/components/script/dom/webidls/HTMLElement.webidl +++ b/components/script/dom/webidls/HTMLElement.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://www.whatwg.org/html/#htmlelement +// https://html.spec.whatwg.org/multipage#htmlelement interface HTMLElement : Element { // metadata attributes attribute DOMString title; diff --git a/components/script/dom/webidls/HTMLEmbedElement.webidl b/components/script/dom/webidls/HTMLEmbedElement.webidl index 7cb69cc4412..ea1b5e96453 100644 --- a/components/script/dom/webidls/HTMLEmbedElement.webidl +++ b/components/script/dom/webidls/HTMLEmbedElement.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://www.whatwg.org/html/#htmlembedelement +// https://html.spec.whatwg.org/multipage#htmlembedelement interface HTMLEmbedElement : HTMLElement { // attribute DOMString src; // attribute DOMString type; @@ -14,7 +14,7 @@ interface HTMLEmbedElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLEmbedElement-partial +// https://html.spec.whatwg.org/multipage#HTMLEmbedElement-partial partial interface HTMLEmbedElement { // attribute DOMString align; // attribute DOMString name; diff --git a/components/script/dom/webidls/HTMLFieldSetElement.webidl b/components/script/dom/webidls/HTMLFieldSetElement.webidl index 1c65475a889..12d38ee1f49 100644 --- a/components/script/dom/webidls/HTMLFieldSetElement.webidl +++ b/components/script/dom/webidls/HTMLFieldSetElement.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://www.whatwg.org/html/#htmlfieldsetelement +// https://html.spec.whatwg.org/multipage#htmlfieldsetelement interface HTMLFieldSetElement : HTMLElement { attribute boolean disabled; readonly attribute HTMLFormElement? form; diff --git a/components/script/dom/webidls/HTMLFontElement.webidl b/components/script/dom/webidls/HTMLFontElement.webidl index 2b718558513..d4188ab1079 100644 --- a/components/script/dom/webidls/HTMLFontElement.webidl +++ b/components/script/dom/webidls/HTMLFontElement.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://www.whatwg.org/html/#htmlfontelement +// https://html.spec.whatwg.org/multipage#htmlfontelement interface HTMLFontElement : HTMLElement { [TreatNullAs=EmptyString] attribute DOMString color; attribute DOMString face; diff --git a/components/script/dom/webidls/HTMLFormElement.webidl b/components/script/dom/webidls/HTMLFormElement.webidl index e74e173cc11..ee230b0c045 100644 --- a/components/script/dom/webidls/HTMLFormElement.webidl +++ b/components/script/dom/webidls/HTMLFormElement.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://www.whatwg.org/html/#htmlformelement +// https://html.spec.whatwg.org/multipage#htmlformelement //[OverrideBuiltins] interface HTMLFormElement : HTMLElement { attribute DOMString acceptCharset; diff --git a/components/script/dom/webidls/HTMLFrameElement.webidl b/components/script/dom/webidls/HTMLFrameElement.webidl index ffd3fff9cd0..376aaee096a 100644 --- a/components/script/dom/webidls/HTMLFrameElement.webidl +++ b/components/script/dom/webidls/HTMLFrameElement.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://www.whatwg.org/html/#htmlframeelement +// https://html.spec.whatwg.org/multipage#htmlframeelement interface HTMLFrameElement : HTMLElement { // attribute DOMString name; // attribute DOMString scrolling; diff --git a/components/script/dom/webidls/HTMLFrameSetElement.webidl b/components/script/dom/webidls/HTMLFrameSetElement.webidl index cbb888928f1..f60b0d4ab6e 100644 --- a/components/script/dom/webidls/HTMLFrameSetElement.webidl +++ b/components/script/dom/webidls/HTMLFrameSetElement.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://www.whatwg.org/html/#htmlframesetelement +// https://html.spec.whatwg.org/multipage#htmlframesetelement interface HTMLFrameSetElement : HTMLElement { // attribute DOMString cols; // attribute DOMString rows; diff --git a/components/script/dom/webidls/HTMLHRElement.webidl b/components/script/dom/webidls/HTMLHRElement.webidl index 977b181204c..a38dc8eb913 100644 --- a/components/script/dom/webidls/HTMLHRElement.webidl +++ b/components/script/dom/webidls/HTMLHRElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmlhrelement +// https://html.spec.whatwg.org/multipage#htmlhrelement interface HTMLHRElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLHRElement-partial +// https://html.spec.whatwg.org/multipage#HTMLHRElement-partial partial interface HTMLHRElement { // attribute DOMString align; // attribute DOMString color; diff --git a/components/script/dom/webidls/HTMLHeadElement.webidl b/components/script/dom/webidls/HTMLHeadElement.webidl index ce2d8805028..9482e973592 100644 --- a/components/script/dom/webidls/HTMLHeadElement.webidl +++ b/components/script/dom/webidls/HTMLHeadElement.webidl @@ -3,5 +3,5 @@ * 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://www.whatwg.org/html/#htmlheadelement +// https://html.spec.whatwg.org/multipage#htmlheadelement interface HTMLHeadElement : HTMLElement {}; diff --git a/components/script/dom/webidls/HTMLHeadingElement.webidl b/components/script/dom/webidls/HTMLHeadingElement.webidl index 16d2b99ede7..a4a84235c5d 100644 --- a/components/script/dom/webidls/HTMLHeadingElement.webidl +++ b/components/script/dom/webidls/HTMLHeadingElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmlheadingelement +// https://html.spec.whatwg.org/multipage#htmlheadingelement interface HTMLHeadingElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLHeadingElement-partial +// https://html.spec.whatwg.org/multipage#HTMLHeadingElement-partial partial interface HTMLHeadingElement { // attribute DOMString align; }; diff --git a/components/script/dom/webidls/HTMLHtmlElement.webidl b/components/script/dom/webidls/HTMLHtmlElement.webidl index a9aec499f19..e270bcfeeb9 100644 --- a/components/script/dom/webidls/HTMLHtmlElement.webidl +++ b/components/script/dom/webidls/HTMLHtmlElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmlhtmlelement +// https://html.spec.whatwg.org/multipage#htmlhtmlelement interface HTMLHtmlElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLHtmlElement-partial +// https://html.spec.whatwg.org/multipage#HTMLHtmlElement-partial partial interface HTMLHtmlElement { // attribute DOMString version; }; diff --git a/components/script/dom/webidls/HTMLIFrameElement.webidl b/components/script/dom/webidls/HTMLIFrameElement.webidl index e230cea4063..8486f2a5ab1 100644 --- a/components/script/dom/webidls/HTMLIFrameElement.webidl +++ b/components/script/dom/webidls/HTMLIFrameElement.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://www.whatwg.org/html/#htmliframeelement +// https://html.spec.whatwg.org/multipage#htmliframeelement interface HTMLIFrameElement : HTMLElement { attribute DOMString src; // attribute DOMString srcdoc; @@ -21,7 +21,7 @@ interface HTMLIFrameElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLIFrameElement-partial +// https://html.spec.whatwg.org/multipage#HTMLIFrameElement-partial partial interface HTMLIFrameElement { // attribute DOMString align; // attribute DOMString scrolling; diff --git a/components/script/dom/webidls/HTMLImageElement.webidl b/components/script/dom/webidls/HTMLImageElement.webidl index defbfb68257..2c7dc0799e9 100644 --- a/components/script/dom/webidls/HTMLImageElement.webidl +++ b/components/script/dom/webidls/HTMLImageElement.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://www.whatwg.org/html/#htmlimageelement +// https://html.spec.whatwg.org/multipage#htmlimageelement [NamedConstructor=Image(optional unsigned long width, optional unsigned long height)] interface HTMLImageElement : HTMLElement { attribute DOMString alt; @@ -21,7 +21,7 @@ interface HTMLImageElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLImageElement-partial +// https://html.spec.whatwg.org/multipage#HTMLImageElement-partial partial interface HTMLImageElement { attribute DOMString name; // attribute DOMString lowsrc; diff --git a/components/script/dom/webidls/HTMLInputElement.webidl b/components/script/dom/webidls/HTMLInputElement.webidl index 60c45c4191e..7ba15728264 100644 --- a/components/script/dom/webidls/HTMLInputElement.webidl +++ b/components/script/dom/webidls/HTMLInputElement.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://www.whatwg.org/html/#htmlinputelement +// https://html.spec.whatwg.org/multipage#htmlinputelement interface HTMLInputElement : HTMLElement { // attribute DOMString accept; // attribute DOMString alt; @@ -71,7 +71,7 @@ interface HTMLInputElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLInputElement-partial +// https://html.spec.whatwg.org/multipage#HTMLInputElement-partial partial interface HTMLInputElement { // attribute DOMString align; // attribute DOMString useMap; diff --git a/components/script/dom/webidls/HTMLLIElement.webidl b/components/script/dom/webidls/HTMLLIElement.webidl index a3cb686056d..3afa707295f 100644 --- a/components/script/dom/webidls/HTMLLIElement.webidl +++ b/components/script/dom/webidls/HTMLLIElement.webidl @@ -3,14 +3,14 @@ * 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://www.whatwg.org/html/#htmllielement +// https://html.spec.whatwg.org/multipage#htmllielement interface HTMLLIElement : HTMLElement { // attribute long value; // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLLIElement-partial +// https://html.spec.whatwg.org/multipage#HTMLLIElement-partial partial interface HTMLLIElement { // attribute DOMString type; }; diff --git a/components/script/dom/webidls/HTMLLabelElement.webidl b/components/script/dom/webidls/HTMLLabelElement.webidl index 049ee7524fd..806baf19dd3 100644 --- a/components/script/dom/webidls/HTMLLabelElement.webidl +++ b/components/script/dom/webidls/HTMLLabelElement.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://www.whatwg.org/html/#htmllabelelement +// https://html.spec.whatwg.org/multipage#htmllabelelement interface HTMLLabelElement : HTMLElement { readonly attribute HTMLFormElement? form; // attribute DOMString htmlFor; diff --git a/components/script/dom/webidls/HTMLLegendElement.webidl b/components/script/dom/webidls/HTMLLegendElement.webidl index e1f1620f1a0..2ccdf7f3702 100644 --- a/components/script/dom/webidls/HTMLLegendElement.webidl +++ b/components/script/dom/webidls/HTMLLegendElement.webidl @@ -3,14 +3,14 @@ * 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://www.whatwg.org/html/#htmllegendelement +// https://html.spec.whatwg.org/multipage#htmllegendelement interface HTMLLegendElement : HTMLElement { //readonly attribute HTMLFormElement? form; // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLLegendElement-partial +// https://html.spec.whatwg.org/multipage#HTMLLegendElement-partial partial interface HTMLLegendElement { // attribute DOMString align; }; diff --git a/components/script/dom/webidls/HTMLLinkElement.webidl b/components/script/dom/webidls/HTMLLinkElement.webidl index 2a94a38a836..8a7081cb3f5 100644 --- a/components/script/dom/webidls/HTMLLinkElement.webidl +++ b/components/script/dom/webidls/HTMLLinkElement.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://www.whatwg.org/html/#htmllinkelement +// https://html.spec.whatwg.org/multipage#htmllinkelement interface HTMLLinkElement : HTMLElement { attribute DOMString href; // attribute DOMString crossOrigin; @@ -18,7 +18,7 @@ interface HTMLLinkElement : HTMLElement { }; //HTMLLinkElement implements LinkStyle; -// https://www.whatwg.org/html/#HTMLLinkElement-partial +// https://html.spec.whatwg.org/multipage#HTMLLinkElement-partial partial interface HTMLLinkElement { attribute DOMString charset; attribute DOMString rev; diff --git a/components/script/dom/webidls/HTMLMapElement.webidl b/components/script/dom/webidls/HTMLMapElement.webidl index 7551bcee696..37859713570 100644 --- a/components/script/dom/webidls/HTMLMapElement.webidl +++ b/components/script/dom/webidls/HTMLMapElement.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://www.whatwg.org/html/#htmlmapelement +// https://html.spec.whatwg.org/multipage#htmlmapelement interface HTMLMapElement : HTMLElement { // attribute DOMString name; //readonly attribute HTMLCollection areas; diff --git a/components/script/dom/webidls/HTMLMediaElement.webidl b/components/script/dom/webidls/HTMLMediaElement.webidl index 17e86f91469..bfb4c6e4f75 100644 --- a/components/script/dom/webidls/HTMLMediaElement.webidl +++ b/components/script/dom/webidls/HTMLMediaElement.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://www.whatwg.org/html/#htmlmediaelement +// https://html.spec.whatwg.org/multipage#htmlmediaelement //enum CanPlayTypeResult { "" /* empty string */, "maybe", "probably" }; [Abstract] interface HTMLMediaElement : HTMLElement { diff --git a/components/script/dom/webidls/HTMLMetaElement.webidl b/components/script/dom/webidls/HTMLMetaElement.webidl index 3703b0f8d19..3284048473f 100644 --- a/components/script/dom/webidls/HTMLMetaElement.webidl +++ b/components/script/dom/webidls/HTMLMetaElement.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://www.whatwg.org/html/#htmlmetaelement +// https://html.spec.whatwg.org/multipage#htmlmetaelement interface HTMLMetaElement : HTMLElement { attribute DOMString name; // attribute DOMString httpEquiv; @@ -12,7 +12,7 @@ interface HTMLMetaElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLMetaElement-partial +// https://html.spec.whatwg.org/multipage#HTMLMetaElement-partial partial interface HTMLMetaElement { // attribute DOMString scheme; }; diff --git a/components/script/dom/webidls/HTMLMeterElement.webidl b/components/script/dom/webidls/HTMLMeterElement.webidl index 957af09d8e1..c5ce6fb8eb8 100644 --- a/components/script/dom/webidls/HTMLMeterElement.webidl +++ b/components/script/dom/webidls/HTMLMeterElement.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://www.whatwg.org/html/#htmlmeterelement +// https://html.spec.whatwg.org/multipage#htmlmeterelement interface HTMLMeterElement : HTMLElement { // attribute double value; // attribute double min; diff --git a/components/script/dom/webidls/HTMLModElement.webidl b/components/script/dom/webidls/HTMLModElement.webidl index 6a6b69eb0db..4be97726069 100644 --- a/components/script/dom/webidls/HTMLModElement.webidl +++ b/components/script/dom/webidls/HTMLModElement.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://www.whatwg.org/html/#htmlmodelement +// https://html.spec.whatwg.org/multipage#htmlmodelement interface HTMLModElement : HTMLElement { // attribute DOMString cite; // attribute DOMString dateTime; diff --git a/components/script/dom/webidls/HTMLOListElement.webidl b/components/script/dom/webidls/HTMLOListElement.webidl index 3fd65236178..faef8afc629 100644 --- a/components/script/dom/webidls/HTMLOListElement.webidl +++ b/components/script/dom/webidls/HTMLOListElement.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://www.whatwg.org/html/#htmlolistelement +// https://html.spec.whatwg.org/multipage#htmlolistelement interface HTMLOListElement : HTMLElement { // attribute boolean reversed; // attribute long start; @@ -12,7 +12,7 @@ interface HTMLOListElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLOListElement-partial +// https://html.spec.whatwg.org/multipage#HTMLOListElement-partial partial interface HTMLOListElement { // attribute boolean compact; }; diff --git a/components/script/dom/webidls/HTMLObjectElement.webidl b/components/script/dom/webidls/HTMLObjectElement.webidl index 2b4e24e61f3..0b9476fa2ba 100644 --- a/components/script/dom/webidls/HTMLObjectElement.webidl +++ b/components/script/dom/webidls/HTMLObjectElement.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://www.whatwg.org/html/#htmlobjectelement +// https://html.spec.whatwg.org/multipage#htmlobjectelement interface HTMLObjectElement : HTMLElement { // attribute DOMString data; attribute DOMString type; @@ -28,7 +28,7 @@ interface HTMLObjectElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLObjectElement-partial +// https://html.spec.whatwg.org/multipage#HTMLObjectElement-partial partial interface HTMLObjectElement { // attribute DOMString align; // attribute DOMString archive; diff --git a/components/script/dom/webidls/HTMLOptGroupElement.webidl b/components/script/dom/webidls/HTMLOptGroupElement.webidl index c9e815e2ff1..ad7c2cafc91 100644 --- a/components/script/dom/webidls/HTMLOptGroupElement.webidl +++ b/components/script/dom/webidls/HTMLOptGroupElement.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://www.whatwg.org/html/#htmloptgroupelement +// https://html.spec.whatwg.org/multipage#htmloptgroupelement interface HTMLOptGroupElement : HTMLElement { attribute boolean disabled; // attribute DOMString label; diff --git a/components/script/dom/webidls/HTMLOptionElement.webidl b/components/script/dom/webidls/HTMLOptionElement.webidl index b4e3bdac353..63ab7712bba 100644 --- a/components/script/dom/webidls/HTMLOptionElement.webidl +++ b/components/script/dom/webidls/HTMLOptionElement.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://www.whatwg.org/html/#htmloptionelement +// https://html.spec.whatwg.org/multipage#htmloptionelement //[NamedConstructor=Option(optional DOMString text = "", optional DOMString value, // optional boolean defaultSelected = false, // optional boolean selected = false)] diff --git a/components/script/dom/webidls/HTMLOutputElement.webidl b/components/script/dom/webidls/HTMLOutputElement.webidl index d618f92e0a9..6ebf6b430a3 100644 --- a/components/script/dom/webidls/HTMLOutputElement.webidl +++ b/components/script/dom/webidls/HTMLOutputElement.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://www.whatwg.org/html/#htmloutputelement +// https://html.spec.whatwg.org/multipage#htmloutputelement interface HTMLOutputElement : HTMLElement { //[PutForwards=value] readonly attribute DOMSettableTokenList htmlFor; readonly attribute HTMLFormElement? form; diff --git a/components/script/dom/webidls/HTMLParagraphElement.webidl b/components/script/dom/webidls/HTMLParagraphElement.webidl index b1abeda9b88..59ab177d974 100644 --- a/components/script/dom/webidls/HTMLParagraphElement.webidl +++ b/components/script/dom/webidls/HTMLParagraphElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmlparagraphelement +// https://html.spec.whatwg.org/multipage#htmlparagraphelement interface HTMLParagraphElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLParagraphElement-partial +// https://html.spec.whatwg.org/multipage#HTMLParagraphElement-partial partial interface HTMLParagraphElement { // attribute DOMString align; }; diff --git a/components/script/dom/webidls/HTMLParamElement.webidl b/components/script/dom/webidls/HTMLParamElement.webidl index 1c646cc6f31..25ab98bb40f 100644 --- a/components/script/dom/webidls/HTMLParamElement.webidl +++ b/components/script/dom/webidls/HTMLParamElement.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://www.whatwg.org/html/#htmlparamelement +// https://html.spec.whatwg.org/multipage#htmlparamelement interface HTMLParamElement : HTMLElement { // attribute DOMString name; // attribute DOMString value; @@ -11,7 +11,7 @@ interface HTMLParamElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLParamElement-partial +// https://html.spec.whatwg.org/multipage#HTMLParamElement-partial partial interface HTMLParamElement { // attribute DOMString type; // attribute DOMString valueType; diff --git a/components/script/dom/webidls/HTMLPreElement.webidl b/components/script/dom/webidls/HTMLPreElement.webidl index 8420ca434f7..61c1c617e6b 100644 --- a/components/script/dom/webidls/HTMLPreElement.webidl +++ b/components/script/dom/webidls/HTMLPreElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmlpreelement +// https://html.spec.whatwg.org/multipage#htmlpreelement interface HTMLPreElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLPreElement-partial +// https://html.spec.whatwg.org/multipage#HTMLPreElement-partial partial interface HTMLPreElement { // attribute long width; }; diff --git a/components/script/dom/webidls/HTMLProgressElement.webidl b/components/script/dom/webidls/HTMLProgressElement.webidl index 372b8d89f10..4a5dec5620e 100644 --- a/components/script/dom/webidls/HTMLProgressElement.webidl +++ b/components/script/dom/webidls/HTMLProgressElement.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://www.whatwg.org/html/#htmlprogresselement +// https://html.spec.whatwg.org/multipage#htmlprogresselement interface HTMLProgressElement : HTMLElement { // attribute double value; // attribute double max; diff --git a/components/script/dom/webidls/HTMLQuoteElement.webidl b/components/script/dom/webidls/HTMLQuoteElement.webidl index 804e91dcb6b..7adf09730ca 100644 --- a/components/script/dom/webidls/HTMLQuoteElement.webidl +++ b/components/script/dom/webidls/HTMLQuoteElement.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://www.whatwg.org/html/#htmlquoteelement +// https://html.spec.whatwg.org/multipage#htmlquoteelement interface HTMLQuoteElement : HTMLElement { // attribute DOMString cite; }; diff --git a/components/script/dom/webidls/HTMLScriptElement.webidl b/components/script/dom/webidls/HTMLScriptElement.webidl index 7f5d014bece..42cf91b2ea3 100644 --- a/components/script/dom/webidls/HTMLScriptElement.webidl +++ b/components/script/dom/webidls/HTMLScriptElement.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://www.whatwg.org/html/#htmlscriptelement +// https://html.spec.whatwg.org/multipage#htmlscriptelement interface HTMLScriptElement : HTMLElement { attribute DOMString src; // attribute DOMString type; @@ -17,7 +17,7 @@ interface HTMLScriptElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLScriptElement-partial +// https://html.spec.whatwg.org/multipage#HTMLScriptElement-partial partial interface HTMLScriptElement { // attribute DOMString event; // attribute DOMString htmlFor; diff --git a/components/script/dom/webidls/HTMLSelectElement.webidl b/components/script/dom/webidls/HTMLSelectElement.webidl index f2dd84fed84..307a5f45eb3 100644 --- a/components/script/dom/webidls/HTMLSelectElement.webidl +++ b/components/script/dom/webidls/HTMLSelectElement.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://www.whatwg.org/html/#htmlselectelement +// https://html.spec.whatwg.org/multipage#htmlselectelement interface HTMLSelectElement : HTMLElement { // attribute boolean autofocus; attribute boolean disabled; diff --git a/components/script/dom/webidls/HTMLSourceElement.webidl b/components/script/dom/webidls/HTMLSourceElement.webidl index 34c9db0b022..44e9d0046d7 100644 --- a/components/script/dom/webidls/HTMLSourceElement.webidl +++ b/components/script/dom/webidls/HTMLSourceElement.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://www.whatwg.org/html/#htmlsourceelement +// https://html.spec.whatwg.org/multipage#htmlsourceelement interface HTMLSourceElement : HTMLElement { // attribute DOMString src; // attribute DOMString type; diff --git a/components/script/dom/webidls/HTMLSpanElement.webidl b/components/script/dom/webidls/HTMLSpanElement.webidl index f4ffe7f5b9f..cbbfad6f933 100644 --- a/components/script/dom/webidls/HTMLSpanElement.webidl +++ b/components/script/dom/webidls/HTMLSpanElement.webidl @@ -3,5 +3,5 @@ * 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://www.whatwg.org/html/#htmlspanelement +// https://html.spec.whatwg.org/multipage#htmlspanelement interface HTMLSpanElement : HTMLElement {}; diff --git a/components/script/dom/webidls/HTMLStyleElement.webidl b/components/script/dom/webidls/HTMLStyleElement.webidl index 178ef6de2a5..671e5a1d5c2 100644 --- a/components/script/dom/webidls/HTMLStyleElement.webidl +++ b/components/script/dom/webidls/HTMLStyleElement.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://www.whatwg.org/html/#htmlstyleelement +// https://html.spec.whatwg.org/multipage#htmlstyleelement interface HTMLStyleElement : HTMLElement { // attribute DOMString media; // attribute DOMString type; diff --git a/components/script/dom/webidls/HTMLTableCaptionElement.webidl b/components/script/dom/webidls/HTMLTableCaptionElement.webidl index 8942ff705d6..2a7e42317ac 100644 --- a/components/script/dom/webidls/HTMLTableCaptionElement.webidl +++ b/components/script/dom/webidls/HTMLTableCaptionElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmltablecaptionelement +// https://html.spec.whatwg.org/multipage#htmltablecaptionelement interface HTMLTableCaptionElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLTableCaptionElement-partial +// https://html.spec.whatwg.org/multipage#HTMLTableCaptionElement-partial partial interface HTMLTableCaptionElement { // attribute DOMString align; }; diff --git a/components/script/dom/webidls/HTMLTableCellElement.webidl b/components/script/dom/webidls/HTMLTableCellElement.webidl index 1371bea720e..49b34d46f95 100644 --- a/components/script/dom/webidls/HTMLTableCellElement.webidl +++ b/components/script/dom/webidls/HTMLTableCellElement.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://www.whatwg.org/html/#htmltablecellelement +// https://html.spec.whatwg.org/multipage#htmltablecellelement [Abstract] interface HTMLTableCellElement : HTMLElement { attribute unsigned long colSpan; @@ -14,7 +14,7 @@ interface HTMLTableCellElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLTableCellElement-partial +// https://html.spec.whatwg.org/multipage#HTMLTableCellElement-partial partial interface HTMLTableCellElement { // attribute DOMString align; // attribute DOMString axis; diff --git a/components/script/dom/webidls/HTMLTableColElement.webidl b/components/script/dom/webidls/HTMLTableColElement.webidl index 79feaa876e7..aae274eb6b0 100644 --- a/components/script/dom/webidls/HTMLTableColElement.webidl +++ b/components/script/dom/webidls/HTMLTableColElement.webidl @@ -3,14 +3,14 @@ * 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://www.whatwg.org/html/#htmltablecolelement +// https://html.spec.whatwg.org/multipage#htmltablecolelement interface HTMLTableColElement : HTMLElement { // attribute unsigned long span; // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLTableColElement-partial +// https://html.spec.whatwg.org/multipage#HTMLTableColElement-partial partial interface HTMLTableColElement { // attribute DOMString align; // attribute DOMString ch; diff --git a/components/script/dom/webidls/HTMLTableDataCellElement.webidl b/components/script/dom/webidls/HTMLTableDataCellElement.webidl index e507723a2fb..c4e3bfa6837 100644 --- a/components/script/dom/webidls/HTMLTableDataCellElement.webidl +++ b/components/script/dom/webidls/HTMLTableDataCellElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmltabledatacellelement +// https://html.spec.whatwg.org/multipage#htmltabledatacellelement interface HTMLTableDataCellElement : HTMLTableCellElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLTableDataCellElement-partial +// https://html.spec.whatwg.org/multipage#HTMLTableDataCellElement-partial partial interface HTMLTableDataCellElement { // attribute DOMString abbr; }; diff --git a/components/script/dom/webidls/HTMLTableElement.webidl b/components/script/dom/webidls/HTMLTableElement.webidl index 546d146bc15..65d8050811d 100644 --- a/components/script/dom/webidls/HTMLTableElement.webidl +++ b/components/script/dom/webidls/HTMLTableElement.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://www.whatwg.org/html/#htmltableelement +// https://html.spec.whatwg.org/multipage#htmltableelement interface HTMLTableElement : HTMLElement { attribute HTMLTableCaptionElement? caption; HTMLElement createCaption(); @@ -25,7 +25,7 @@ interface HTMLTableElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLTableElement-partial +// https://html.spec.whatwg.org/multipage#HTMLTableElement-partial partial interface HTMLTableElement { // attribute DOMString align; // attribute DOMString border; diff --git a/components/script/dom/webidls/HTMLTableHeaderCellElement.webidl b/components/script/dom/webidls/HTMLTableHeaderCellElement.webidl index 179674c5422..711282d3b2a 100644 --- a/components/script/dom/webidls/HTMLTableHeaderCellElement.webidl +++ b/components/script/dom/webidls/HTMLTableHeaderCellElement.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://www.whatwg.org/html/#htmltableheadercellelement +// https://html.spec.whatwg.org/multipage#htmltableheadercellelement interface HTMLTableHeaderCellElement : HTMLTableCellElement { // attribute DOMString scope; // attribute DOMString abbr; diff --git a/components/script/dom/webidls/HTMLTableRowElement.webidl b/components/script/dom/webidls/HTMLTableRowElement.webidl index c2de0ea0b5b..f8364510bc6 100644 --- a/components/script/dom/webidls/HTMLTableRowElement.webidl +++ b/components/script/dom/webidls/HTMLTableRowElement.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://www.whatwg.org/html/#htmltablerowelement +// https://html.spec.whatwg.org/multipage#htmltablerowelement interface HTMLTableRowElement : HTMLElement { //readonly attribute long rowIndex; //readonly attribute long sectionRowIndex; @@ -14,7 +14,7 @@ interface HTMLTableRowElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLTableRowElement-partial +// https://html.spec.whatwg.org/multipage#HTMLTableRowElement-partial partial interface HTMLTableRowElement { // attribute DOMString align; // attribute DOMString ch; diff --git a/components/script/dom/webidls/HTMLTableSectionElement.webidl b/components/script/dom/webidls/HTMLTableSectionElement.webidl index 32f9e09a62e..98b9f3fe1d8 100644 --- a/components/script/dom/webidls/HTMLTableSectionElement.webidl +++ b/components/script/dom/webidls/HTMLTableSectionElement.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://www.whatwg.org/html/#htmltablesectionelement +// https://html.spec.whatwg.org/multipage#htmltablesectionelement interface HTMLTableSectionElement : HTMLElement { readonly attribute HTMLCollection rows; //HTMLElement insertRow(optional long index = -1); @@ -12,7 +12,7 @@ interface HTMLTableSectionElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLTableSectionElement-partial +// https://html.spec.whatwg.org/multipage#HTMLTableSectionElement-partial partial interface HTMLTableSectionElement { // attribute DOMString align; // attribute DOMString ch; diff --git a/components/script/dom/webidls/HTMLTemplateElement.webidl b/components/script/dom/webidls/HTMLTemplateElement.webidl index fc497ea9f15..5b328862141 100644 --- a/components/script/dom/webidls/HTMLTemplateElement.webidl +++ b/components/script/dom/webidls/HTMLTemplateElement.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://www.whatwg.org/html/#htmltemplateelement +// https://html.spec.whatwg.org/multipage#htmltemplateelement interface HTMLTemplateElement : HTMLElement { readonly attribute DocumentFragment content; }; diff --git a/components/script/dom/webidls/HTMLTextAreaElement.webidl b/components/script/dom/webidls/HTMLTextAreaElement.webidl index fac589a2e29..028b2bd3dba 100644 --- a/components/script/dom/webidls/HTMLTextAreaElement.webidl +++ b/components/script/dom/webidls/HTMLTextAreaElement.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://www.whatwg.org/html/#htmltextareaelement +// https://html.spec.whatwg.org/multipage#htmltextareaelement interface HTMLTextAreaElement : HTMLElement { // attribute DOMString autocomplete; // attribute boolean autofocus; diff --git a/components/script/dom/webidls/HTMLTimeElement.webidl b/components/script/dom/webidls/HTMLTimeElement.webidl index c884a6ce730..706187aa76a 100644 --- a/components/script/dom/webidls/HTMLTimeElement.webidl +++ b/components/script/dom/webidls/HTMLTimeElement.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://www.whatwg.org/html/#htmltimeelement +// https://html.spec.whatwg.org/multipage#htmltimeelement interface HTMLTimeElement : HTMLElement { // attribute DOMString dateTime; }; diff --git a/components/script/dom/webidls/HTMLTitleElement.webidl b/components/script/dom/webidls/HTMLTitleElement.webidl index 58e4ebc235e..25ae8818722 100644 --- a/components/script/dom/webidls/HTMLTitleElement.webidl +++ b/components/script/dom/webidls/HTMLTitleElement.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://www.whatwg.org/html/#htmltitleelement +// https://html.spec.whatwg.org/multipage#htmltitleelement interface HTMLTitleElement : HTMLElement { [Pure] attribute DOMString text; diff --git a/components/script/dom/webidls/HTMLTrackElement.webidl b/components/script/dom/webidls/HTMLTrackElement.webidl index 10b0df9fab2..d95ea017097 100644 --- a/components/script/dom/webidls/HTMLTrackElement.webidl +++ b/components/script/dom/webidls/HTMLTrackElement.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://www.whatwg.org/html/#htmltrackelement +// https://html.spec.whatwg.org/multipage#htmltrackelement interface HTMLTrackElement : HTMLElement { // attribute DOMString kind; // attribute DOMString src; diff --git a/components/script/dom/webidls/HTMLUListElement.webidl b/components/script/dom/webidls/HTMLUListElement.webidl index 67840c03348..7e27b77c12f 100644 --- a/components/script/dom/webidls/HTMLUListElement.webidl +++ b/components/script/dom/webidls/HTMLUListElement.webidl @@ -3,12 +3,12 @@ * 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://www.whatwg.org/html/#htmlulistelement +// https://html.spec.whatwg.org/multipage#htmlulistelement interface HTMLUListElement : HTMLElement { // also has obsolete members }; -// https://www.whatwg.org/html/#HTMLUListElement-partial +// https://html.spec.whatwg.org/multipage#HTMLUListElement-partial partial interface HTMLUListElement { // attribute boolean compact; // attribute DOMString type; diff --git a/components/script/dom/webidls/HTMLUnknownElement.webidl b/components/script/dom/webidls/HTMLUnknownElement.webidl index 366d6d366f1..8bec70d42b4 100644 --- a/components/script/dom/webidls/HTMLUnknownElement.webidl +++ b/components/script/dom/webidls/HTMLUnknownElement.webidl @@ -4,7 +4,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* * The origin of this IDL file is - * https://www.whatwg.org/specs/web-apps/current-work/ and + * https://html.spec.whatwg.org/multipage#htmlunknownelement and * http://dev.w3.org/csswg/cssom-view/ * * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and diff --git a/components/script/dom/webidls/HTMLVideoElement.webidl b/components/script/dom/webidls/HTMLVideoElement.webidl index 83071c4f03c..75ca8d9d82c 100644 --- a/components/script/dom/webidls/HTMLVideoElement.webidl +++ b/components/script/dom/webidls/HTMLVideoElement.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://www.whatwg.org/html/#htmlvideoelement +// https://html.spec.whatwg.org/multipage#htmlvideoelement interface HTMLVideoElement : HTMLMediaElement { // attribute unsigned long width; // attribute unsigned long height; diff --git a/components/script/dom/webidls/ImageData.webidl b/components/script/dom/webidls/ImageData.webidl index 93472f4efaa..afff4dbc981 100644 --- a/components/script/dom/webidls/ImageData.webidl +++ b/components/script/dom/webidls/ImageData.webidl @@ -4,7 +4,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* * The origin of this IDL file is - * https://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#imagedata + * https://html.spec.whatwg.org/multipage#imagedata * * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and Opera Software ASA. * You are granted a license to use, reproduce and create derivative works of this document. diff --git a/components/script/dom/webidls/Location.webidl b/components/script/dom/webidls/Location.webidl index 01e05bb7e29..6b0147684c2 100644 --- a/components/script/dom/webidls/Location.webidl +++ b/components/script/dom/webidls/Location.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://www.whatwg.org/html/#location +// https://html.spec.whatwg.org/multipage#location /*[Unforgeable]*/ interface Location { void assign(DOMString url); //void replace(DOMString url); diff --git a/components/script/dom/webidls/MessageEvent.webidl b/components/script/dom/webidls/MessageEvent.webidl index a26b6cfbe20..369315cb3ac 100644 --- a/components/script/dom/webidls/MessageEvent.webidl +++ b/components/script/dom/webidls/MessageEvent.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://www.whatwg.org/html/#messageevent +// https://html.spec.whatwg.org/multipage#messageevent [Constructor(DOMString type, optional MessageEventInit eventInitDict)/*, Exposed=Window,Worker*/] interface MessageEvent : Event { readonly attribute any data; diff --git a/components/script/dom/webidls/Navigator.webidl b/components/script/dom/webidls/Navigator.webidl index aa604957c2e..88b98105720 100644 --- a/components/script/dom/webidls/Navigator.webidl +++ b/components/script/dom/webidls/Navigator.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://www.whatwg.org/html/#navigator +// https://html.spec.whatwg.org/multipage#navigator interface Navigator { // objects implementing this interface also implement the interfaces given below }; @@ -14,7 +14,7 @@ Navigator implements NavigatorID; //Navigator implements NavigatorStorageUtils; //Navigator implements NavigatorPlugins; -// https://www.whatwg.org/html/#navigatorid +// https://html.spec.whatwg.org/multipage#navigatorid [NoInterfaceObject/*, Exposed=Window,Worker*/] interface NavigatorID { readonly attribute DOMString appCodeName; // constant "Mozilla" diff --git a/components/script/dom/webidls/ValidityState.webidl b/components/script/dom/webidls/ValidityState.webidl index 945f622b80c..6fba1cac370 100644 --- a/components/script/dom/webidls/ValidityState.webidl +++ b/components/script/dom/webidls/ValidityState.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://www.whatwg.org/html/#validitystate +// https://html.spec.whatwg.org/multipage#validitystate interface ValidityState { //readonly attribute boolean valueMissing; //readonly attribute boolean typeMismatch; diff --git a/components/script/dom/webidls/Window.webidl b/components/script/dom/webidls/Window.webidl index 1a488a9d8af..7a04bdfb85f 100644 --- a/components/script/dom/webidls/Window.webidl +++ b/components/script/dom/webidls/Window.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://www.whatwg.org/html/#window +// https://html.spec.whatwg.org/multipage#window [PrimaryGlobal] /*sealed*/ interface Window : EventTarget { // the current browsing context @@ -66,7 +66,7 @@ Window implements GlobalEventHandlers; Window implements WindowEventHandlers; -// https://www.whatwg.org/html/#windowtimers +// https://html.spec.whatwg.org/multipage#windowtimers [NoInterfaceObject/*, Exposed=Window,Worker*/] interface WindowTimers { long setTimeout(Function handler, optional long timeout = 0, any... arguments); @@ -78,7 +78,7 @@ interface WindowTimers { }; Window implements WindowTimers; -// https://www.whatwg.org/html/#atob +// https://html.spec.whatwg.org/multipage#atob [NoInterfaceObject/*, Exposed=Window,Worker*/] interface WindowBase64 { [Throws] diff --git a/components/script/dom/webidls/Worker.webidl b/components/script/dom/webidls/Worker.webidl index 481c2d44849..b9ae17c7455 100644 --- a/components/script/dom/webidls/Worker.webidl +++ b/components/script/dom/webidls/Worker.webidl @@ -3,13 +3,13 @@ * 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://www.whatwg.org/html/#abstractworker +// https://html.spec.whatwg.org/multipage#abstractworker [NoInterfaceObject/*, Exposed=Window,Worker*/] interface AbstractWorker { attribute EventHandler onerror; }; -// https://www.whatwg.org/html/#worker +// https://html.spec.whatwg.org/multipage#worker [Constructor(DOMString scriptURL)/*, Exposed=Window,Worker*/] interface Worker : EventTarget { //void terminate(); diff --git a/components/script/dom/webidls/WorkerGlobalScope.webidl b/components/script/dom/webidls/WorkerGlobalScope.webidl index 28a4f028bb5..b255d549983 100644 --- a/components/script/dom/webidls/WorkerGlobalScope.webidl +++ b/components/script/dom/webidls/WorkerGlobalScope.webidl @@ -15,7 +15,7 @@ interface WorkerGlobalScope : EventTarget { // attribute EventHandler ononline; }; -// https://www.whatwg.org/html/#WorkerGlobalScope-partial +// https://html.spec.whatwg.org/multipage#WorkerGlobalScope-partial //[Exposed=Worker] partial interface WorkerGlobalScope { // not obsolete [Throws] diff --git a/components/script/dom/webidls/WorkerLocation.webidl b/components/script/dom/webidls/WorkerLocation.webidl index c339a2aab67..6208e4f23f2 100644 --- a/components/script/dom/webidls/WorkerLocation.webidl +++ b/components/script/dom/webidls/WorkerLocation.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://www.whatwg.org/html/#worker-locations +// https://html.spec.whatwg.org/multipage#worker-locations //[Exposed=Worker] interface WorkerLocation { }; WorkerLocation implements URLUtilsReadOnly; diff --git a/components/script/dom/webidls/WorkerNavigator.webidl b/components/script/dom/webidls/WorkerNavigator.webidl index b193449bc20..36d82348ab9 100644 --- a/components/script/dom/webidls/WorkerNavigator.webidl +++ b/components/script/dom/webidls/WorkerNavigator.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://www.whatwg.org/html/#workernavigator +// https://html.spec.whatwg.org/multipage#workernavigator //[Exposed=Worker] interface WorkerNavigator {}; WorkerNavigator implements NavigatorID; |