OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. |
3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> | 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
281 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOM String namespaceURI, DOMString qualifiedName, | 281 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOM String namespaceURI, DOMString qualifiedName, |
282 [TreatNullAs=NullString] DOMString typeExtension); | 282 [TreatNullAs=NullString] DOMString typeExtension); |
283 | 283 |
284 // Page visibility API. | 284 // Page visibility API. |
285 readonly attribute DOMString webkitVisibilityState; | 285 readonly attribute DOMString webkitVisibilityState; |
286 readonly attribute boolean webkitHidden; | 286 readonly attribute boolean webkitHidden; |
287 | 287 |
288 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces | 288 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces |
289 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute DOMSecurityPolicy securityPolicy; | 289 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute DOMSecurityPolicy securityPolicy; |
290 | 290 |
291 // ParentNode interface API | |
292 [PerWorldBindings] readonly attribute HTMLCollection children; | |
293 [PerWorldBindings] readonly attribute Element firstElementChild; | |
294 [PerWorldBindings] readonly attribute Element lastElementChild; | |
295 [PerWorldBindings] readonly attribute unsigned long childElementCount; | |
abarth-chromium
2013/05/09 22:50:12
These probably don't need PerWorldBindings. They'
| |
291 }; | 296 }; |
292 | 297 |
OLD | NEW |