Index: Source/core/dom/Attr.idl |
diff --git a/Source/core/dom/Attr.idl b/Source/core/dom/Attr.idl |
index 5c22a7986f1d548b34025d1e5656b780dc6d85b0..3f551fd853871f4d5aea2b6092d3b19fa3c04e01 100644 |
--- a/Source/core/dom/Attr.idl |
+++ b/Source/core/dom/Attr.idl |
@@ -39,5 +39,9 @@ interface Attr : Node { |
readonly attribute DOMString? prefix; |
readonly attribute DOMString? namespaceURI; |
readonly attribute DOMString? localName; |
-}; |
+ // https://www.w3.org/Bugs/Public/show_bug.cgi?id=26609 |
+ [MeasureAs=AttrChildAccess] readonly attribute NodeList childNodes; |
+ [MeasureAs=AttrChildAccess] readonly attribute Node firstChild; |
+ [MeasureAs=AttrChildAccess] readonly attribute Node lastChild; |
+}; |