Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Side by Side Diff: Source/core/dom/Element.h

Issue 18836002: Implement 'mouseenter' and 'mouseleave' from DOM Level 3 Events. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Attribute tests. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Document.idl ('k') | Source/core/dom/Element.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 DEFINE_ATTRIBUTE_EVENT_LISTENER(drop); 201 DEFINE_ATTRIBUTE_EVENT_LISTENER(drop);
202 DEFINE_ATTRIBUTE_EVENT_LISTENER(dragstart); 202 DEFINE_ATTRIBUTE_EVENT_LISTENER(dragstart);
203 DEFINE_ATTRIBUTE_EVENT_LISTENER(drag); 203 DEFINE_ATTRIBUTE_EVENT_LISTENER(drag);
204 DEFINE_ATTRIBUTE_EVENT_LISTENER(dragend); 204 DEFINE_ATTRIBUTE_EVENT_LISTENER(dragend);
205 DEFINE_ATTRIBUTE_EVENT_LISTENER(input); 205 DEFINE_ATTRIBUTE_EVENT_LISTENER(input);
206 DEFINE_ATTRIBUTE_EVENT_LISTENER(invalid); 206 DEFINE_ATTRIBUTE_EVENT_LISTENER(invalid);
207 DEFINE_ATTRIBUTE_EVENT_LISTENER(keydown); 207 DEFINE_ATTRIBUTE_EVENT_LISTENER(keydown);
208 DEFINE_ATTRIBUTE_EVENT_LISTENER(keypress); 208 DEFINE_ATTRIBUTE_EVENT_LISTENER(keypress);
209 DEFINE_ATTRIBUTE_EVENT_LISTENER(keyup); 209 DEFINE_ATTRIBUTE_EVENT_LISTENER(keyup);
210 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousedown); 210 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousedown);
211 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseenter);
212 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseleave);
211 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousemove); 213 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousemove);
212 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseout); 214 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseout);
213 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseover); 215 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseover);
214 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseup); 216 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseup);
215 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousewheel); 217 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousewheel);
216 DEFINE_ATTRIBUTE_EVENT_LISTENER(scroll); 218 DEFINE_ATTRIBUTE_EVENT_LISTENER(scroll);
217 DEFINE_ATTRIBUTE_EVENT_LISTENER(select); 219 DEFINE_ATTRIBUTE_EVENT_LISTENER(select);
218 DEFINE_ATTRIBUTE_EVENT_LISTENER(submit); 220 DEFINE_ATTRIBUTE_EVENT_LISTENER(submit);
219 221
220 // These four attribute event handler attributes are overridden by HTMLBodyE lement 222 // These four attribute event handler attributes are overridden by HTMLBodyE lement
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after
1061 1063
1062 inline const Attribute* ElementData::attributeItem(unsigned index) const 1064 inline const Attribute* ElementData::attributeItem(unsigned index) const
1063 { 1065 {
1064 RELEASE_ASSERT(index < length()); 1066 RELEASE_ASSERT(index < length());
1065 return attributeBase() + index; 1067 return attributeBase() + index;
1066 } 1068 }
1067 1069
1068 } // namespace 1070 } // namespace
1069 1071
1070 #endif 1072 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/Document.idl ('k') | Source/core/dom/Element.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698