diff options
author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2019-10-25 15:46:52 +0900 |
---|---|---|
committer | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2019-10-29 21:35:40 +0900 |
commit | 691af0e98b95cb39a836319ecd10a35ce75b8db2 (patch) | |
tree | 8a25c0ae59bbab9b23016a259eabfc945c73b3a6 /components/script/dom/webidls/DOMTokenList.webidl | |
parent | 97c01fc4792c6bc0edd2d588470f38a7f02d9661 (diff) | |
download | servo-691af0e98b95cb39a836319ecd10a35ce75b8db2.tar.gz servo-691af0e98b95cb39a836319ecd10a35ce75b8db2.zip |
Support stringifier attributes
Diffstat (limited to 'components/script/dom/webidls/DOMTokenList.webidl')
-rw-r--r-- | components/script/dom/webidls/DOMTokenList.webidl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/webidls/DOMTokenList.webidl b/components/script/dom/webidls/DOMTokenList.webidl index c4b1ff776bc..ed4a541f730 100644 --- a/components/script/dom/webidls/DOMTokenList.webidl +++ b/components/script/dom/webidls/DOMTokenList.webidl @@ -22,8 +22,7 @@ interface DOMTokenList { void replace(DOMString token, DOMString newToken); [CEReactions, Pure] - attribute DOMString value; + stringifier attribute DOMString value; - stringifier; iterable<DOMString?>; }; |