Chromium Code Reviews

Unified Diff: webkit/glue/webcursor_unittest.cc

Issue 5686001: Ensure that custom cursors set by windowless flash plugins get marshaled corr... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « webkit/glue/webcursor.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webcursor_unittest.cc
===================================================================
--- webkit/glue/webcursor_unittest.cc (revision 68604)
+++ webkit/glue/webcursor_unittest.cc (working copy)
@@ -15,9 +15,9 @@
// This is a valid custom cursor.
Pickle ok_custom_pickle;
// Type and hotspots.
+ ok_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
ok_custom_pickle.WriteInt(0);
ok_custom_pickle.WriteInt(0);
- ok_custom_pickle.WriteInt(0);
// X & Y
ok_custom_pickle.WriteInt(1);
ok_custom_pickle.WriteInt(1);
@@ -32,9 +32,9 @@
// This custom cursor has not been send with enough data.
Pickle short_custom_pickle;
// Type and hotspots.
+ short_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
short_custom_pickle.WriteInt(0);
short_custom_pickle.WriteInt(0);
- short_custom_pickle.WriteInt(0);
// X & Y
short_custom_pickle.WriteInt(1);
short_custom_pickle.WriteInt(1);
@@ -49,9 +49,9 @@
// This custom cursor has enough data but is too big.
Pickle large_custom_pickle;
// Type and hotspots.
+ large_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
large_custom_pickle.WriteInt(0);
large_custom_pickle.WriteInt(0);
- large_custom_pickle.WriteInt(0);
// X & Y
static const int kTooBigSize = 4096 + 1;
large_custom_pickle.WriteInt(kTooBigSize);
@@ -68,9 +68,9 @@
// This custom cursor uses negative lengths.
Pickle neg_custom_pickle;
// Type and hotspots.
+ neg_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
neg_custom_pickle.WriteInt(0);
neg_custom_pickle.WriteInt(0);
- neg_custom_pickle.WriteInt(0);
// X & Y
neg_custom_pickle.WriteInt(-1);
neg_custom_pickle.WriteInt(-1);
@@ -81,6 +81,17 @@
neg_custom_pickle.WriteUInt32(0);
iter = NULL;
EXPECT_FALSE(custom_cursor.Deserialize(&neg_custom_pickle, &iter));
+
+#if defined(OS_WIN)
+ Pickle win32_custom_pickle;
+ WebCursor win32_custom_cursor;
+ win32_custom_cursor.InitFromExternalCursor(
+ reinterpret_cast<HCURSOR>(1000));
+ EXPECT_TRUE(win32_custom_cursor.Serialize(&win32_custom_pickle));
+ iter = NULL;
+ EXPECT_TRUE(custom_cursor.Deserialize(&win32_custom_pickle, &iter));
+ EXPECT_EQ(reinterpret_cast<HCURSOR>(1000), custom_cursor.GetCursor(NULL));
+#endif // OS_WIN
}
TEST(WebCursorTest, ClampHotspot) {
« no previous file with comments | « webkit/glue/webcursor.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine