aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r--components/script/dom/webidls/HTMLAnchorElement.webidl8
-rw-r--r--components/script/dom/webidls/HTMLLinkElement.webidl6
2 files changed, 7 insertions, 7 deletions
diff --git a/components/script/dom/webidls/HTMLAnchorElement.webidl b/components/script/dom/webidls/HTMLAnchorElement.webidl
index 7622cc0ceb4..7129f0ad1ed 100644
--- a/components/script/dom/webidls/HTMLAnchorElement.webidl
+++ b/components/script/dom/webidls/HTMLAnchorElement.webidl
@@ -30,9 +30,9 @@ interface HTMLAnchorElement : HTMLElement {
// https://www.whatwg.org/html/#HTMLAnchorElement-partial
partial interface HTMLAnchorElement {
- // attribute DOMString coords;
+ attribute DOMString coords;
// attribute DOMString charset;
- // attribute DOMString name;
- // attribute DOMString rev;
- // attribute DOMString shape;
+ attribute DOMString name;
+ attribute DOMString rev;
+ attribute DOMString shape;
};
diff --git a/components/script/dom/webidls/HTMLLinkElement.webidl b/components/script/dom/webidls/HTMLLinkElement.webidl
index 9d32ec5b7b3..2a94a38a836 100644
--- a/components/script/dom/webidls/HTMLLinkElement.webidl
+++ b/components/script/dom/webidls/HTMLLinkElement.webidl
@@ -20,7 +20,7 @@ interface HTMLLinkElement : HTMLElement {
// https://www.whatwg.org/html/#HTMLLinkElement-partial
partial interface HTMLLinkElement {
- // attribute DOMString charset;
- // attribute DOMString rev;
- // attribute DOMString target;
+ attribute DOMString charset;
+ attribute DOMString rev;
+ attribute DOMString target;
};