| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 99 |
| 100 // WebKit extension, pending specification. | 100 // WebKit extension, pending specification. |
| 101 [RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional
DOMString selectors); | 101 [RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional
DOMString selectors); |
| 102 | 102 |
| 103 // Shadow DOM API | 103 // Shadow DOM API |
| 104 [EnabledAtRuntime=experimentalShadowDOM, Reflect, PerWorldBindings] attribut
e DOMString pseudo; | 104 [EnabledAtRuntime=experimentalShadowDOM, Reflect, PerWorldBindings] attribut
e DOMString pseudo; |
| 105 [EnabledAtRuntime=experimentalShadowDOM, RaisesException] ShadowRoot createS
hadowRoot(); | 105 [EnabledAtRuntime=experimentalShadowDOM, RaisesException] ShadowRoot createS
hadowRoot(); |
| 106 [EnabledAtRuntime=experimentalShadowDOM, PerWorldBindings] readonly attribut
e ShadowRoot shadowRoot; | 106 [EnabledAtRuntime=experimentalShadowDOM, PerWorldBindings] readonly attribut
e ShadowRoot shadowRoot; |
| 107 | 107 |
| 108 // To-be-deprecated prefixed Shadow DOM API | 108 // To-be-deprecated prefixed Shadow DOM API |
| 109 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString
webkitPseudo; | 109 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings, MeasureAs=ShadowDOM
PrefixedPseudo] attribute DOMString webkitPseudo; |
| 110 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha
dowRoot(); | 110 [ImplementedAs=createShadowRoot, RaisesException, MeasureAs=ShadowDOMPrefixe
dCreateShadowRoot] ShadowRoot webkitCreateShadowRoot(); |
| 111 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w
ebkitShadowRoot; | 111 [ImplementedAs=shadowRoot, PerWorldBindings, MeasureAs=ShadowDOMPrefixedShad
owRoot] readonly attribute ShadowRoot webkitShadowRoot; |
| 112 | 112 |
| 113 // CSSOM View Module API | 113 // CSSOM View Module API |
| 114 ClientRectList getClientRects(); | 114 ClientRectList getClientRects(); |
| 115 ClientRect getBoundingClientRect(); | 115 ClientRect getBoundingClientRect(); |
| 116 | 116 |
| 117 // Mozilla version | 117 // Mozilla version |
| 118 const unsigned short ALLOW_KEYBOARD_INPUT = 1; | 118 const unsigned short ALLOW_KEYBOARD_INPUT = 1; |
| 119 [EnabledAtRuntime=fullscreen] void webkitRequestFullScreen([Default=Undefine
d] optional unsigned short flags); | 119 [EnabledAtRuntime=fullscreen] void webkitRequestFullScreen([Default=Undefine
d] optional unsigned short flags); |
| 120 | 120 |
| 121 // W3C version | 121 // W3C version |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchmove; | 198 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchmove; |
| 199 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchend; | 199 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchend; |
| 200 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchcancel; | 200 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchcancel; |
| 201 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
change; | 201 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
change; |
| 202 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
error; | 202 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
error; |
| 203 }; | 203 }; |
| 204 | 204 |
| 205 Element implements ParentNode; | 205 Element implements ParentNode; |
| 206 Element implements ChildNode; | 206 Element implements ChildNode; |
| 207 | 207 |
| OLD | NEW |