| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 attribute EventHandler onbeforecopy; | 203 attribute EventHandler onbeforecopy; |
| 204 attribute EventHandler onbeforecut; | 204 attribute EventHandler onbeforecut; |
| 205 attribute EventHandler onbeforepaste; | 205 attribute EventHandler onbeforepaste; |
| 206 attribute EventHandler oncopy; | 206 attribute EventHandler oncopy; |
| 207 attribute EventHandler oncut; | 207 attribute EventHandler oncut; |
| 208 attribute EventHandler onpaste; | 208 attribute EventHandler onpaste; |
| 209 attribute EventHandler onsearch; | 209 attribute EventHandler onsearch; |
| 210 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; | 210 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; |
| 211 attribute EventHandler onselectionchange; | 211 attribute EventHandler onselectionchange; |
| 212 attribute EventHandler onselectstart; | 212 attribute EventHandler onselectstart; |
| 213 attribute EventHandler onwheel; | |
| 214 }; | 213 }; |
| 215 | 214 |
| 216 Document implements GlobalEventHandlers; | 215 Document implements GlobalEventHandlers; |
| 217 Document implements ParentNode; | 216 Document implements ParentNode; |
| 218 Document implements NonElementParentNode; | 217 Document implements NonElementParentNode; |
| 219 Document implements DocumentOrShadowRoot; | 218 Document implements DocumentOrShadowRoot; |
| 220 Document implements FontFaceSource; | 219 Document implements FontFaceSource; |
| OLD | NEW |