| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
| 5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl
e Inc. All rights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl
e Inc. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseenter); | 209 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseenter); |
| 210 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseleave); | 210 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseleave); |
| 211 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousemove); | 211 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousemove); |
| 212 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseout); | 212 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseout); |
| 213 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseover); | 213 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseover); |
| 214 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseup); | 214 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseup); |
| 215 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousewheel); | 215 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousewheel); |
| 216 DEFINE_ATTRIBUTE_EVENT_LISTENER(scroll); | 216 DEFINE_ATTRIBUTE_EVENT_LISTENER(scroll); |
| 217 DEFINE_ATTRIBUTE_EVENT_LISTENER(select); | 217 DEFINE_ATTRIBUTE_EVENT_LISTENER(select); |
| 218 DEFINE_ATTRIBUTE_EVENT_LISTENER(submit); | 218 DEFINE_ATTRIBUTE_EVENT_LISTENER(submit); |
| 219 DEFINE_ATTRIBUTE_EVENT_LISTENER(wheel); |
| 219 | 220 |
| 220 // These four attribute event handler attributes are overridden by HTMLBodyE
lement | 221 // These four attribute event handler attributes are overridden by HTMLBodyE
lement |
| 221 // and HTMLFrameSetElement to forward to the DOMWindow. | 222 // and HTMLFrameSetElement to forward to the DOMWindow. |
| 222 DECLARE_VIRTUAL_ATTRIBUTE_EVENT_LISTENER(blur); | 223 DECLARE_VIRTUAL_ATTRIBUTE_EVENT_LISTENER(blur); |
| 223 DECLARE_VIRTUAL_ATTRIBUTE_EVENT_LISTENER(error); | 224 DECLARE_VIRTUAL_ATTRIBUTE_EVENT_LISTENER(error); |
| 224 DECLARE_VIRTUAL_ATTRIBUTE_EVENT_LISTENER(focus); | 225 DECLARE_VIRTUAL_ATTRIBUTE_EVENT_LISTENER(focus); |
| 225 DECLARE_VIRTUAL_ATTRIBUTE_EVENT_LISTENER(load); | 226 DECLARE_VIRTUAL_ATTRIBUTE_EVENT_LISTENER(load); |
| 226 | 227 |
| 227 // WebKit extensions | 228 // WebKit extensions |
| 228 DEFINE_ATTRIBUTE_EVENT_LISTENER(beforecut); | 229 DEFINE_ATTRIBUTE_EVENT_LISTENER(beforecut); |
| (...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1083 | 1084 |
| 1084 inline const Attribute* ElementData::attributeItem(unsigned index) const | 1085 inline const Attribute* ElementData::attributeItem(unsigned index) const |
| 1085 { | 1086 { |
| 1086 RELEASE_ASSERT(index < length()); | 1087 RELEASE_ASSERT(index < length()); |
| 1087 return attributeBase() + index; | 1088 return attributeBase() + index; |
| 1088 } | 1089 } |
| 1089 | 1090 |
| 1090 } // namespace | 1091 } // namespace |
| 1091 | 1092 |
| 1092 #endif | 1093 #endif |
| OLD | NEW |