Index: Source/core/dom/Document.idl |
diff --git a/Source/core/dom/Document.idl b/Source/core/dom/Document.idl |
index 7f756cf726846a205749c3872f8ee1d8663430a1..a8bc11b7ded097dd79b45299c18eb2c80d17697b 100644 |
--- a/Source/core/dom/Document.idl |
+++ b/Source/core/dom/Document.idl |
@@ -288,5 +288,10 @@ |
// Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-file/tip/csp-specification.dev.html#script-interfaces |
[EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attribute DOMSecurityPolicy securityPolicy; |
+ // ParentNode interface API |
+ readonly attribute HTMLCollection children; |
+ readonly attribute Element firstElementChild; |
+ readonly attribute Element lastElementChild; |
+ readonly attribute unsigned long childElementCount; |
}; |