diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-09-12 20:55:31 +0100 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-09-13 09:45:02 -0400 |
commit | fdebd2ae2ac0a4a69f1913bac6de1a6d037d3ed2 (patch) | |
tree | a86c2945da3d1ff51b65b3a3d60d345b4cc8402c /components/script/dom/webidls | |
parent | b05f4aa3aa3085e65cb75433ae37bf272216d033 (diff) | |
download | servo-fdebd2ae2ac0a4a69f1913bac6de1a6d037d3ed2.tar.gz servo-fdebd2ae2ac0a4a69f1913bac6de1a6d037d3ed2.zip |
Add obsolete reflecting attributes on <a> and <link>
From my understanding, setting any of these will not affect any
presentational hints for the elements
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r-- | components/script/dom/webidls/HTMLAnchorElement.webidl | 8 | ||||
-rw-r--r-- | components/script/dom/webidls/HTMLLinkElement.webidl | 6 |
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; }; |