aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl
diff options
context:
space:
mode:
authorKagami Sascha Rosylight <saschanaz@outlook.com>2019-10-25 15:46:52 +0900
committerKagami Sascha Rosylight <saschanaz@outlook.com>2019-10-29 21:35:40 +0900
commit691af0e98b95cb39a836319ecd10a35ce75b8db2 (patch)
tree8a25c0ae59bbab9b23016a259eabfc945c73b3a6 /components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl
parent97c01fc4792c6bc0edd2d588470f38a7f02d9661 (diff)
downloadservo-691af0e98b95cb39a836319ecd10a35ce75b8db2.tar.gz
servo-691af0e98b95cb39a836319ecd10a35ce75b8db2.zip
Support stringifier attributes
Diffstat (limited to 'components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl')
-rw-r--r--components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl9
1 files changed, 1 insertions, 8 deletions
diff --git a/components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl b/components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl
index 7c4750a58f6..2f0f0ae68c0 100644
--- a/components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl
+++ b/components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl
@@ -4,10 +4,8 @@
// https://html.spec.whatwg.org/multipage/#htmlhyperlinkelementutils
interface mixin HTMLHyperlinkElementUtils {
- // [CEReactions]
- // stringifier attribute USVString href;
[CEReactions]
- attribute USVString href;
+ stringifier attribute USVString href;
readonly attribute USVString origin;
[CEReactions]
attribute USVString protocol;
@@ -27,9 +25,4 @@ interface mixin HTMLHyperlinkElementUtils {
attribute USVString search;
[CEReactions]
attribute USVString hash;
-
- // Adding a separate stringifier method until
- // https://github.com/servo/servo/issues/7590 adds attribute stringifier
- // support.
- stringifier;
};