aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom
diff options
context:
space:
mode:
authorTiziana Sellitto <tiziana.sel@gmail.com>2016-09-10 15:45:43 +0200
committerTiziana Sellitto <tiziana.sel@gmail.com>2016-09-15 16:07:29 +0200
commit4efaa91cd1aa85389a883500cecc19c2d4382435 (patch)
tree249e2b984a9406c079f91eb79eafe596ffb3a9c4 /components/script/dom
parentb3db4b4c0dfc41ffbf566da15bd85ebdb7b1ea1f (diff)
downloadservo-4efaa91cd1aa85389a883500cecc19c2d4382435.tar.gz
servo-4efaa91cd1aa85389a883500cecc19c2d4382435.zip
Make DOMTokenList Iterable
Diffstat (limited to 'components/script/dom')
-rw-r--r--components/script/dom/webidls/DOMTokenList.webidl1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/webidls/DOMTokenList.webidl b/components/script/dom/webidls/DOMTokenList.webidl
index 7285ac687e1..11bdbda8570 100644
--- a/components/script/dom/webidls/DOMTokenList.webidl
+++ b/components/script/dom/webidls/DOMTokenList.webidl
@@ -25,4 +25,5 @@ interface DOMTokenList {
attribute DOMString value;
stringifier;
+ iterable<DOMString?>;
};