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

Side by Side Diff: Source/core/page/DOMWindow.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/html/HTMLElement.cpp ('k') | Source/core/page/Window.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) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 DEFINE_ATTRIBUTE_EVENT_LISTENER(invalid); 285 DEFINE_ATTRIBUTE_EVENT_LISTENER(invalid);
286 DEFINE_ATTRIBUTE_EVENT_LISTENER(keydown); 286 DEFINE_ATTRIBUTE_EVENT_LISTENER(keydown);
287 DEFINE_ATTRIBUTE_EVENT_LISTENER(keypress); 287 DEFINE_ATTRIBUTE_EVENT_LISTENER(keypress);
288 DEFINE_ATTRIBUTE_EVENT_LISTENER(keyup); 288 DEFINE_ATTRIBUTE_EVENT_LISTENER(keyup);
289 DEFINE_ATTRIBUTE_EVENT_LISTENER(load); 289 DEFINE_ATTRIBUTE_EVENT_LISTENER(load);
290 DEFINE_ATTRIBUTE_EVENT_LISTENER(loadeddata); 290 DEFINE_ATTRIBUTE_EVENT_LISTENER(loadeddata);
291 DEFINE_ATTRIBUTE_EVENT_LISTENER(loadedmetadata); 291 DEFINE_ATTRIBUTE_EVENT_LISTENER(loadedmetadata);
292 DEFINE_ATTRIBUTE_EVENT_LISTENER(loadstart); 292 DEFINE_ATTRIBUTE_EVENT_LISTENER(loadstart);
293 DEFINE_ATTRIBUTE_EVENT_LISTENER(message); 293 DEFINE_ATTRIBUTE_EVENT_LISTENER(message);
294 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousedown); 294 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousedown);
295 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseenter);
296 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseleave);
295 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousemove); 297 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousemove);
296 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseout); 298 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseout);
297 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseover); 299 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseover);
298 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseup); 300 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseup);
299 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousewheel); 301 DEFINE_ATTRIBUTE_EVENT_LISTENER(mousewheel);
300 DEFINE_ATTRIBUTE_EVENT_LISTENER(offline); 302 DEFINE_ATTRIBUTE_EVENT_LISTENER(offline);
301 DEFINE_ATTRIBUTE_EVENT_LISTENER(online); 303 DEFINE_ATTRIBUTE_EVENT_LISTENER(online);
302 DEFINE_ATTRIBUTE_EVENT_LISTENER(pagehide); 304 DEFINE_ATTRIBUTE_EVENT_LISTENER(pagehide);
303 DEFINE_ATTRIBUTE_EVENT_LISTENER(pageshow); 305 DEFINE_ATTRIBUTE_EVENT_LISTENER(pageshow);
304 DEFINE_ATTRIBUTE_EVENT_LISTENER(pause); 306 DEFINE_ATTRIBUTE_EVENT_LISTENER(pause);
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 } 435 }
434 436
435 inline String DOMWindow::defaultStatus() const 437 inline String DOMWindow::defaultStatus() const
436 { 438 {
437 return m_defaultStatus; 439 return m_defaultStatus;
438 } 440 }
439 441
440 } // namespace WebCore 442 } // namespace WebCore
441 443
442 #endif // DOMWindow_h 444 #endif // DOMWindow_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLElement.cpp ('k') | Source/core/page/Window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698