diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2015-09-11 02:16:00 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2015-09-11 02:56:45 +0200 |
commit | a33e5f9179d45ee9c405c5d5937e3d52825430b5 (patch) | |
tree | bf8f95d220c6263674fff3f9585326150435ff9b /components/script/dom/webidls | |
parent | f190ba360e41465d43972826b6715eb39e7b9822 (diff) | |
download | servo-a33e5f9179d45ee9c405c5d5937e3d52825430b5.tar.gz servo-a33e5f9179d45ee9c405c5d5937e3d52825430b5.zip |
Fix Node.childNodes attributes
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r-- | components/script/dom/webidls/Node.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/Node.webidl b/components/script/dom/webidls/Node.webidl index bb118820237..a595dae3fc0 100644 --- a/components/script/dom/webidls/Node.webidl +++ b/components/script/dom/webidls/Node.webidl @@ -35,7 +35,7 @@ interface Node : EventTarget { [Pure] readonly attribute Element? parentElement; boolean hasChildNodes(); - [Constant] + [SameObject] readonly attribute NodeList childNodes; [Pure] readonly attribute Node? firstChild; |