| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 // ParentNode interface API | 103 // ParentNode interface API |
| 104 [PerWorldBindings] readonly attribute HTMLCollection children; | 104 [PerWorldBindings] readonly attribute HTMLCollection children; |
| 105 [PerWorldBindings] readonly attribute Element firstElementChild; | 105 [PerWorldBindings] readonly attribute Element firstElementChild; |
| 106 [PerWorldBindings] readonly attribute Element lastElementChild; | 106 [PerWorldBindings] readonly attribute Element lastElementChild; |
| 107 [PerWorldBindings] readonly attribute unsigned long childElementCount; | 107 [PerWorldBindings] readonly attribute unsigned long childElementCount; |
| 108 | 108 |
| 109 // ShadowAware API | 109 // ShadowAware API |
| 110 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString
webkitPseudo; | 110 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString
webkitPseudo; |
| 111 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha
dowRoot(); | 111 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha
dowRoot(); |
| 112 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w
ebkitShadowRoot; | 112 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w
ebkitShadowRoot; |
| 113 [ImplementedAs=insertionParentForBinding, PerWorldBindings] readonly attribu
te Node webkitInsertionParent; | |
| 114 | 113 |
| 115 // ChildNode interface API | 114 // ChildNode interface API |
| 116 [PerWorldBindings] readonly attribute Element previousElementSibling; | 115 [PerWorldBindings] readonly attribute Element previousElementSibling; |
| 117 [PerWorldBindings] readonly attribute Element nextElementSibling; | 116 [PerWorldBindings] readonly attribute Element nextElementSibling; |
| 118 [RaisesException] void remove(); | 117 [RaisesException] void remove(); |
| 119 | 118 |
| 120 // CSSOM View Module API | 119 // CSSOM View Module API |
| 121 ClientRectList getClientRects(); | 120 ClientRectList getClientRects(); |
| 122 ClientRect getBoundingClientRect(); | 121 ClientRect getBoundingClientRect(); |
| 123 | 122 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 [NotEnumerable, PerWorldBindings] attribute EventListener onreset; | 198 [NotEnumerable, PerWorldBindings] attribute EventListener onreset; |
| 200 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch; | 199 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch; |
| 201 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart; | 200 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart; |
| 202 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchstart; | 201 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchstart; |
| 203 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchmove; | 202 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchmove; |
| 204 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchend; | 203 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchend; |
| 205 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchcancel; | 204 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchcancel; |
| 206 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
change; | 205 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
change; |
| 207 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
error; | 206 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
error; |
| 208 }; | 207 }; |
| 209 | |
| OLD | NEW |