No tests for changing mouse cursors
https://bugs.webkit.org/show_bug.cgi?id=100550
Patch by Rick Byers <rbyers@chromium.org> on 2012-11-15
Reviewed by Brent Fulgham.
.:
Add necessary exports for Internals::getCurrentCursorInfo
* Source/autotools/symbols.filter:
Source/WebCore:
Add infrastructure to keep track of the last set mouse cursor,
and then to query it from DumpRenderTree. Also adds ASSERTs to help ensure
we can reliably detect when an uninitialized Cursor object is used (such as
the one that can be returned from OptionalCursor in the NoCursorChange scenario).
Test: fast/events/mouse-cursor.html
* WebCore.exp.in: Add Cursor copy ctor export
* page/EventHandler.cpp:
(WebCore::OptionalCursor::cursor):
(WebCore::EventHandler::handleMouseMoveEvent): Keep track of last set mouse cursor
* page/EventHandler.h:
(WebCore::EventHandler::currentMouseCursor): New getter for last set mouse cursor
* platform/Cursor.h:
(WebCore::Cursor::Cursor): Mark uninitialized cursor types as invalid.
(WebCore::Cursor::type): Assert cursor type is valid.
* testing/Internals.cpp:
(WebCore::cursorTypeToString): Helper to convert cursor type to enum
(WebCore):
(WebCore::Internals::getCurrentCursorInfo): New function to return a string describing the last set mouse cursor
* testing/Internals.h: Declare getCurrentCursorInfo
* testing/Internals.idl: Declare getCurrentCursorInfo
Source/WebKit2:
Add necessary exports for Internals::getCurrentCursorInfo
* win/WebKit2.def:
* win/WebKit2CFLite.def:
LayoutTests:
Add a simple test covering the basic scenarios of changing a mouse
cursor with CSS. This includes most of the cases currently covered
by ManualTests/*cursor*.
* fast/events/mouse-cursor-expected.txt: Added.
* fast/events/mouse-cursor.html: Added.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@134803 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/ChangeLog b/ChangeLog
index 4e3f826..469d470 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2012-11-15 Rick Byers <rbyers@chromium.org>
+
+ No tests for changing mouse cursors
+ https://bugs.webkit.org/show_bug.cgi?id=100550
+
+ Reviewed by Brent Fulgham.
+
+ Add necessary exports for Internals::getCurrentCursorInfo
+
+ * Source/autotools/symbols.filter:
+
2012-11-15 Kent Tamura <tkent@chromium.org>
Support stand-alone month names in calendar picker