aboutsummaryrefslogtreecommitdiffstats
path: root/components/script
diff options
context:
space:
mode:
Diffstat (limited to 'components/script')
-rw-r--r--components/script/dom/domparser.rs2
-rw-r--r--components/script/dom/webidls/DOMParser.webidl2
-rw-r--r--components/script/dom/webidls/Element.webidl4
-rw-r--r--components/script/dom/webidls/Range.webidl2
4 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/domparser.rs b/components/script/dom/domparser.rs
index 0ce2d50e09a..57dd1450293 100644
--- a/components/script/dom/domparser.rs
+++ b/components/script/dom/domparser.rs
@@ -46,7 +46,7 @@ impl DOMParser {
}
impl DOMParserMethods for DOMParser {
- // https://domparsing.spec.whatwg.org/#the-domparser-interface
+ // https://w3c.github.io/DOM-Parsing/#the-domparser-interface
fn ParseFromString(&self,
s: DOMString,
ty: DOMParserBinding::SupportedType)
diff --git a/components/script/dom/webidls/DOMParser.webidl b/components/script/dom/webidls/DOMParser.webidl
index 8680f695f97..6381f01e449 100644
--- a/components/script/dom/webidls/DOMParser.webidl
+++ b/components/script/dom/webidls/DOMParser.webidl
@@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/*
* The origin of this IDL file is
- * https://domparsing.spec.whatwg.org/#the-domparser-interface
+ * https://w3c.github.io/DOM-Parsing/#the-domparser-interface
*/
enum SupportedType {
diff --git a/components/script/dom/webidls/Element.webidl b/components/script/dom/webidls/Element.webidl
index 61a54e180d0..1662dda36d6 100644
--- a/components/script/dom/webidls/Element.webidl
+++ b/components/script/dom/webidls/Element.webidl
@@ -4,7 +4,7 @@
/*
* The origin of this IDL file is
* https://dom.spec.whatwg.org/#element and
- * https://domparsing.spec.whatwg.org/ and
+ * https://w3c.github.io/DOM-Parsing/ and
* http://dev.w3.org/csswg/cssom-view/ and
* http://www.w3.org/TR/selectors-api/
*
@@ -102,7 +102,7 @@ partial interface Element {
readonly attribute long clientHeight;
};
-// https://domparsing.spec.whatwg.org/#extensions-to-the-element-interface
+// https://w3c.github.io/DOM-Parsing/#extensions-to-the-element-interface
partial interface Element {
[Throws,TreatNullAs=EmptyString]
attribute DOMString innerHTML;
diff --git a/components/script/dom/webidls/Range.webidl b/components/script/dom/webidls/Range.webidl
index 67ef7b34138..c40f2ecb161 100644
--- a/components/script/dom/webidls/Range.webidl
+++ b/components/script/dom/webidls/Range.webidl
@@ -4,7 +4,7 @@
/*
* The origin of this IDL file is
* https://dom.spec.whatwg.org/#range
- * https://domparsing.spec.whatwg.org/#dom-range-createcontextualfragment
+ * https://w3c.github.io/DOM-Parsing/#dom-range-createcontextualfragment
* http://dvcs.w3.org/hg/csswg/raw-file/tip/cssom-view/Overview.html#extensions-to-the-range-interface
*/