Chromium Code Reviews| Index: Source/core/dom/Document.idl |
| diff --git a/Source/core/dom/Document.idl b/Source/core/dom/Document.idl |
| index 7f756cf726846a205749c3872f8ee1d8663430a1..19a0007fc1a0bf5a65f013b60c13d7520b993e31 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 |
| + [PerWorldBindings] readonly attribute HTMLCollection children; |
| + [PerWorldBindings] readonly attribute Element firstElementChild; |
| + [PerWorldBindings] readonly attribute Element lastElementChild; |
| + [PerWorldBindings] readonly attribute unsigned long childElementCount; |
|
abarth-chromium
2013/05/09 22:50:12
These probably don't need PerWorldBindings. They'
|
| }; |