diff options
author | Jinwoo Song <jinwoo7.song@samsung.com> | 2015-04-27 18:30:31 +0900 |
---|---|---|
committer | Jinwoo Song <jinwoo7.song@samsung.com> | 2015-05-27 16:37:29 +0900 |
commit | 2701c264ab3a5fce34c3d925fedced193ecc2d19 (patch) | |
tree | 948f560f4e2ad06a17ca283d03a157813c1fa320 /components/script/dom/webidls/NodeIterator.webidl | |
parent | df2f8d0636922a7e89895fa61fdba30099cec9ea (diff) | |
download | servo-2701c264ab3a5fce34c3d925fedced193ecc2d19.tar.gz servo-2701c264ab3a5fce34c3d925fedced193ecc2d19.zip |
Implement NodeIterator's attributes
- root, whatToShow, and filter
Diffstat (limited to 'components/script/dom/webidls/NodeIterator.webidl')
-rw-r--r-- | components/script/dom/webidls/NodeIterator.webidl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/webidls/NodeIterator.webidl b/components/script/dom/webidls/NodeIterator.webidl index 6eb684dd9f9..f1b08c32a14 100644 --- a/components/script/dom/webidls/NodeIterator.webidl +++ b/components/script/dom/webidls/NodeIterator.webidl @@ -12,16 +12,16 @@ // Import from http://hg.mozilla.org/mozilla-central/raw-file/a5a720259d79/dom/webidl/NodeIterator.webidl interface NodeIterator { - // [Constant] - // readonly attribute Node root; + [Constant] + readonly attribute Node root; // [Pure] // readonly attribute Node? referenceNode; // [Pure] // readonly attribute boolean pointerBeforeReferenceNode; - // [Constant] - // readonly attribute unsigned long whatToShow; - // [Constant] - // readonly attribute NodeFilter? filter; + [Constant] + readonly attribute unsigned long whatToShow; + [Constant] + readonly attribute NodeFilter? filter; // [Throws] // Node? nextNode(); |