diff --git a/components/script/dom/htmlbodyelement.rs b/components/script/dom/htmlbodyelement.rs index 6dc5bcdcd83..b2a69422d75 100644 --- a/components/script/dom/htmlbodyelement.rs +++ b/components/script/dom/htmlbodyelement.rs @@ -68,10 +68,10 @@ impl HTMLBodyElement { } impl HTMLBodyElementMethods for HTMLBodyElement { - // https://html.spec.whatwg.org/multipage#dom-body-bgcolor + // https://html.spec.whatwg.org/multipage/#dom-body-bgcolor make_getter!(BgColor, "bgcolor"); - // https://html.spec.whatwg.org/multipage#dom-body-bgcolor + // https://html.spec.whatwg.org/multipage/#dom-body-bgcolor make_setter!(SetBgColor, "bgcolor"); // https://html.spec.whatwg.org/multipage/#dom-body-text diff --git a/components/script/dom/htmlbuttonelement.rs b/components/script/dom/htmlbuttonelement.rs index 8406fa2f895..a1056554361 100644 --- a/components/script/dom/htmlbuttonelement.rs +++ b/components/script/dom/htmlbuttonelement.rs @@ -76,13 +76,13 @@ impl HTMLButtonElementMethods for HTMLButtonElement { ValidityState::new(window.r()) } - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage/#dom-fe-disabled make_bool_getter!(Disabled); - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage/#dom-fe-disabled make_bool_setter!(SetDisabled, "disabled"); - // https://html.spec.whatwg.org/multipage#dom-fae-form + // https://html.spec.whatwg.org/multipage/#dom-fae-form fn GetForm(&self) -> Option> { self.form_owner() } diff --git a/components/script/dom/htmlfieldsetelement.rs b/components/script/dom/htmlfieldsetelement.rs index c4c2f5a86f9..5b55f62b175 100644 --- a/components/script/dom/htmlfieldsetelement.rs +++ b/components/script/dom/htmlfieldsetelement.rs @@ -52,7 +52,7 @@ impl HTMLFieldSetElement { } impl HTMLFieldSetElementMethods for HTMLFieldSetElement { - // https://www.whatwg.org/html/#dom-fieldset-elements + // https://html.spec.whatwg.org/multipage/#dom-fieldset-elements fn Elements(&self) -> Root { #[derive(JSTraceable, HeapSizeOf)] struct ElementsFilter; @@ -75,13 +75,13 @@ impl HTMLFieldSetElementMethods for HTMLFieldSetElement { ValidityState::new(window.r()) } - // https://www.whatwg.org/html/#dom-fieldset-disabled + // https://html.spec.whatwg.org/multipage/#dom-fieldset-disabled make_bool_getter!(Disabled); - // https://www.whatwg.org/html/#dom-fieldset-disabled + // https://html.spec.whatwg.org/multipage/#dom-fieldset-disabled make_bool_setter!(SetDisabled, "disabled"); - // https://html.spec.whatwg.org/multipage#dom-fae-form + // https://html.spec.whatwg.org/multipage/#dom-fae-form fn GetForm(&self) -> Option> { self.form_owner() } diff --git a/components/script/dom/htmlinputelement.rs b/components/script/dom/htmlinputelement.rs index 6ebdec1e56c..019514ad29b 100644 --- a/components/script/dom/htmlinputelement.rs +++ b/components/script/dom/htmlinputelement.rs @@ -228,10 +228,10 @@ impl RawLayoutHTMLInputElementHelpers for HTMLInputElement { } impl HTMLInputElementMethods for HTMLInputElement { - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage/#dom-fe-disabled make_bool_getter!(Disabled); - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage/#dom-fe-disabled make_bool_setter!(SetDisabled, "disabled"); // https://html.spec.whatwg.org/multipage/#dom-fae-form diff --git a/components/script/dom/htmllabelelement.rs b/components/script/dom/htmllabelelement.rs index 624d0e3f722..ef0c65cbf38 100644 --- a/components/script/dom/htmllabelelement.rs +++ b/components/script/dom/htmllabelelement.rs @@ -47,7 +47,7 @@ impl HTMLLabelElement { } impl HTMLLabelElementMethods for HTMLLabelElement { - // https://html.spec.whatwg.org/multipage#dom-fae-form + // https://html.spec.whatwg.org/multipage/#dom-fae-form fn GetForm(&self) -> Option> { self.form_owner() } diff --git a/components/script/dom/htmlobjectelement.rs b/components/script/dom/htmlobjectelement.rs index fb6c7a39860..f5632c2b63d 100644 --- a/components/script/dom/htmlobjectelement.rs +++ b/components/script/dom/htmlobjectelement.rs @@ -94,7 +94,7 @@ impl HTMLObjectElementMethods for HTMLObjectElement { // https://html.spec.whatwg.org/multipage/#dom-object-type make_setter!(SetType, "type"); - // https://html.spec.whatwg.org/multipage#dom-fae-form + // https://html.spec.whatwg.org/multipage/#dom-fae-form fn GetForm(&self) -> Option> { self.form_owner() } diff --git a/components/script/dom/htmloptgroupelement.rs b/components/script/dom/htmloptgroupelement.rs index 6a139a03c34..e645e1cfc50 100644 --- a/components/script/dom/htmloptgroupelement.rs +++ b/components/script/dom/htmloptgroupelement.rs @@ -49,10 +49,10 @@ impl HTMLOptGroupElement { } impl HTMLOptGroupElementMethods for HTMLOptGroupElement { - // https://www.whatwg.org/html#dom-optgroup-disabled + // https://html.spec.whatwg.org/multipage/#dom-optgroup-disabled make_bool_getter!(Disabled); - // https://www.whatwg.org/html#dom-optgroup-disabled + // https://html.spec.whatwg.org/multipage/#dom-optgroup-disabled make_bool_setter!(SetDisabled, "disabled"); } diff --git a/components/script/dom/htmloptionelement.rs b/components/script/dom/htmloptionelement.rs index c2ff22096ab..337e307f046 100644 --- a/components/script/dom/htmloptionelement.rs +++ b/components/script/dom/htmloptionelement.rs @@ -78,16 +78,16 @@ fn collect_text(element: &Element, value: &mut DOMString) { } impl HTMLOptionElementMethods for HTMLOptionElement { - // https://www.whatwg.org/html/#dom-option-disabled + // https://html.spec.whatwg.org/multipage/#dom-option-disabled make_bool_getter!(Disabled); - // https://www.whatwg.org/html/#dom-option-disabled + // https://html.spec.whatwg.org/multipage/#dom-option-disabled fn SetDisabled(&self, disabled: bool) { let elem = ElementCast::from_ref(self); elem.set_bool_attribute(&atom!("disabled"), disabled) } - // https://www.whatwg.org/html/#dom-option-text + // https://html.spec.whatwg.org/multipage/#dom-option-text fn Text(&self) -> DOMString { let element = ElementCast::from_ref(self); let mut content = String::new(); @@ -95,7 +95,7 @@ impl HTMLOptionElementMethods for HTMLOptionElement { str_join(split_html_space_chars(&content), " ") } - // https://www.whatwg.org/html/#dom-option-text + // https://html.spec.whatwg.org/multipage/#dom-option-text fn SetText(&self, value: DOMString) { let node = NodeCast::from_ref(self); node.SetTextContent(Some(value)) diff --git a/components/script/dom/htmloutputelement.rs b/components/script/dom/htmloutputelement.rs index c0e98571358..44be6050e90 100644 --- a/components/script/dom/htmloutputelement.rs +++ b/components/script/dom/htmloutputelement.rs @@ -54,7 +54,7 @@ impl HTMLOutputElementMethods for HTMLOutputElement { ValidityState::new(window.r()) } - // https://html.spec.whatwg.org/multipage#dom-fae-form + // https://html.spec.whatwg.org/multipage/#dom-fae-form fn GetForm(&self) -> Option> { self.form_owner() } diff --git a/components/script/dom/htmlscriptelement.rs b/components/script/dom/htmlscriptelement.rs index cba43a2724f..23328eadce5 100644 --- a/components/script/dom/htmlscriptelement.rs +++ b/components/script/dom/htmlscriptelement.rs @@ -107,7 +107,7 @@ impl HTMLScriptElement { /// Supported script types as defined by -/// . +/// . static SCRIPT_JS_MIMES: StaticStringVec = &[ "application/ecmascript", "application/javascript", @@ -569,7 +569,7 @@ impl VirtualMethods for HTMLScriptElement { s.cloning_steps(copy, maybe_doc, clone_children); } - // https://whatwg.org/html/#already-started + // https://html.spec.whatwg.org/multipage/#already-started if self.already_started.get() { let copy_elem = HTMLScriptElementCast::to_ref(copy).unwrap(); copy_elem.mark_already_started(); @@ -583,12 +583,12 @@ impl HTMLScriptElementMethods for HTMLScriptElement { // https://html.spec.whatwg.org/multipage/#dom-script-src make_setter!(SetSrc, "src"); - // https://www.whatwg.org/html/#dom-script-text + // https://html.spec.whatwg.org/multipage/#dom-script-text fn Text(&self) -> DOMString { Node::collect_text_contents(NodeCast::from_ref(self).children()) } - // https://www.whatwg.org/html/#dom-script-text + // https://html.spec.whatwg.org/multipage/#dom-script-text fn SetText(&self, value: DOMString) { let node = NodeCast::from_ref(self); node.SetTextContent(Some(value)) diff --git a/components/script/dom/htmlselectelement.rs b/components/script/dom/htmlselectelement.rs index 8c6b73c564b..7be4ba5d118 100644 --- a/components/script/dom/htmlselectelement.rs +++ b/components/script/dom/htmlselectelement.rs @@ -68,13 +68,13 @@ impl HTMLSelectElementMethods for HTMLSelectElement { fn Add(&self, _element: HTMLOptionElementOrHTMLOptGroupElement, _before: Option) { } - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage/#dom-fe-disabled make_bool_getter!(Disabled); - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage/#dom-fe-disabled make_bool_setter!(SetDisabled, "disabled"); - // https://html.spec.whatwg.org/multipage#dom-fae-form + // https://html.spec.whatwg.org/multipage/#dom-fae-form fn GetForm(&self) -> Option> { self.form_owner() } diff --git a/components/script/dom/htmltextareaelement.rs b/components/script/dom/htmltextareaelement.rs index c2231b070b7..603067728b9 100644 --- a/components/script/dom/htmltextareaelement.rs +++ b/components/script/dom/htmltextareaelement.rs @@ -123,13 +123,13 @@ impl HTMLTextAreaElementMethods for HTMLTextAreaElement { // https://html.spec.whatwg.org/multipage/#dom-textarea-cols make_limited_uint_setter!(SetCols, "cols", DEFAULT_COLS); - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage/#dom-fe-disabled make_bool_getter!(Disabled); - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage/#dom-fe-disabled make_bool_setter!(SetDisabled, "disabled"); - // https://html.spec.whatwg.org/multipage#dom-fae-form + // https://html.spec.whatwg.org/multipage/#dom-fae-form fn GetForm(&self) -> Option> { self.form_owner() } diff --git a/components/script/dom/htmltitleelement.rs b/components/script/dom/htmltitleelement.rs index 0640a121f5d..948071bf4b3 100644 --- a/components/script/dom/htmltitleelement.rs +++ b/components/script/dom/htmltitleelement.rs @@ -47,7 +47,7 @@ impl HTMLTitleElement { } impl HTMLTitleElementMethods for HTMLTitleElement { - // https://www.whatwg.org/html/#dom-title-text + // https://html.spec.whatwg.org/multipage/#dom-title-text fn Text(&self) -> DOMString { let node = NodeCast::from_ref(self); let mut content = String::new(); @@ -61,7 +61,7 @@ impl HTMLTitleElementMethods for HTMLTitleElement { content } - // https://www.whatwg.org/html/#dom-title-text + // https://html.spec.whatwg.org/multipage/#dom-title-text fn SetText(&self, value: DOMString) { let node = NodeCast::from_ref(self); node.SetTextContent(Some(value)) diff --git a/components/script/dom/webidls/CanvasRenderingContext2D.webidl b/components/script/dom/webidls/CanvasRenderingContext2D.webidl index 295fc2fb3b7..f2b9f051198 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..fda54a03569 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..8689144f323 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..8848c3aafbb 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..f21e3dc6af7 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..40300a645c6 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..860e9af008a 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..5161af1a0e0 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..b1770270986 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..5c59c62f9be 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..af538851c05 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..0edba3293d4 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..fcd162dca0b 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..e64c3d41782 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..879a26325c9 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..2324d760d45 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..9910914e287 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..d2ee8f11fa7 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..733561d5c39 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..8581d40c46f 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..3610a87e588 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..79b8e757db8 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..aa6d7167156 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..e9607b6170e 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..10c5bf49cfd 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..87ea131d978 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..5036d6c20b3 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..a2115d55281 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..3997997db75 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..c505aa8aff9 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..4f4a42fddff 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..34cd6f5d645 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..0628f386ea6 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..50dfb947ad1 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..00900df77fc 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..8c8b55c3e14 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..79b658d1c69 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..f4c5be4ddc1 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..b7da37495f8 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..e179b47f964 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..2e174381fcb 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..0406920b951 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..d65c35d8a02 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..5feb3c721b0 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..dd3880a67f6 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..79627a56eef 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..86ca8ecf86b 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..1ce3452ad79 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..8a6fca427ca 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..0e01f90ead6 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..46ffa6b83f2 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..0af1e086776 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..945cac2e0c7 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..fb6aed7e40c 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..8f53e4fde9e 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..e64a69778e0 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..e683ab7a9fa 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..1b8cdc5a239 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..0f3a2a6a14f 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..c8257cfa117 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..a4de0d2669a 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..cb405fdf8aa 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..669e356588d 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..9ddf710653f 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..3389912edcd 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..4f1cc2c27d0 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..d7a13d9c959 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..f989f25fcdf 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..31302ea307f 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..a55e54a7061 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..ad94cc0cefe 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..2db9f565ed2 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..787b0977a91 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..23d722434ac 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..70b496b00ec 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..0db3861205a 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..869eaab9deb 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..c6f9c7ba0e2 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..4f461f1a9a6 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..c80ff3898cc 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..73438fdd7fa 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..7d624118271 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..ec62d556c4b 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; diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index 61a18274ec9..879bff0b708 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -291,7 +291,7 @@ impl Window { } } -// https://www.whatwg.org/html/#atob +// https://html.spec.whatwg.org/multipage/#atob pub fn base64_btoa(input: DOMString) -> Fallible { // "The btoa() method must throw an InvalidCharacterError exception if // the method's first argument contains any character whose code point @@ -311,7 +311,7 @@ pub fn base64_btoa(input: DOMString) -> Fallible { } } -// https://www.whatwg.org/html/#atob +// https://html.spec.whatwg.org/multipage/#atob pub fn base64_atob(input: DOMString) -> Fallible { // "Remove all space characters from input." // serialize::base64::from_base64 ignores \r and \n, @@ -479,7 +479,7 @@ impl WindowMethods for Window { self.Window() } - // https://www.whatwg.org/html/#dom-frames + // https://html.spec.whatwg.org/multipage/#dom-frames fn Frames(&self) -> Root { self.Window() } diff --git a/components/script/dom/worker.rs b/components/script/dom/worker.rs index 5d10c632c8e..226e9143277 100644 --- a/components/script/dom/worker.rs +++ b/components/script/dom/worker.rs @@ -62,7 +62,7 @@ impl Worker { WorkerBinding::Wrap) } - // https://www.whatwg.org/html/#dom-worker + // https://html.spec.whatwg.org/multipage/#dom-worker pub fn Constructor(global: GlobalRef, script_url: DOMString) -> Fallible> { // Step 2-4. let worker_url = match UrlParser::new().base_url(&global.get_url()).parse(&script_url) { diff --git a/python/tidy.py b/python/tidy.py index 432814e8f93..37785b6b513 100644 --- a/python/tidy.py +++ b/python/tidy.py @@ -407,9 +407,8 @@ def check_webidl_spec(file_name, contents): "//html.spec.whatwg.org", "//url.spec.whatwg.org", "//xhr.spec.whatwg.org", - "//www.whatwg.org/html", - "//www.whatwg.org/specs", "//w3c.github.io", + "//heycam.github.io/webidl", # Not a URL "// This interface is entirely internal to Servo, and should not be" + " accessible to\n// web pages."