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

Unified Diff: Source/web/tests/WebInputEventConversionTest.cpp

Issue 663523002: Adding support for DOM3 KeyboardEvents Code in KeyboardEvents (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added keyboardTest failure for virtual/slimmingpaint Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebInputEventConversion.cpp ('k') | Source/web/tests/WebPluginContainerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/WebInputEventConversionTest.cpp
diff --git a/Source/web/tests/WebInputEventConversionTest.cpp b/Source/web/tests/WebInputEventConversionTest.cpp
index b0f8a9a0e176b51df1108afa2582a37e2270f8cb..a9548c0facd3926d079cecc886189c388ef2abac 100644
--- a/Source/web/tests/WebInputEventConversionTest.cpp
+++ b/Source/web/tests/WebInputEventConversionTest.cpp
@@ -57,7 +57,7 @@ namespace {
PassRefPtrWillBeRawPtr<KeyboardEvent> createKeyboardEventWithLocation(KeyboardEvent::KeyLocationCode location)
{
- return KeyboardEvent::create("keydown", true, true, 0, "", location, false, false, false, false);
+ return KeyboardEvent::create("keydown", true, true, 0, "", "", location, false, false, false, false);
}
int getModifiersForKeyLocationCode(KeyboardEvent::KeyLocationCode location)
@@ -731,7 +731,7 @@ TEST(WebInputEventConversionTest, PinchViewportOffset)
TEST(WebInputEventConversionTest, ElasticOverscroll)
{
- const std::string baseURL("http://www.test5.com/");
+ const std::string baseURL("http://www.test6.com/");
const std::string fileName("fixed_layout.html");
URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(baseURL.c_str()), WebString::fromUTF8("fixed_layout.html"));
@@ -792,7 +792,7 @@ TEST(WebInputEventConversionTest, ElasticOverscroll)
TEST(WebInputEventConversionTest, WebMouseWheelEventBuilder)
{
- const std::string baseURL("http://www.test6.com/");
+ const std::string baseURL("http://www.test5.com/");
const std::string fileName("fixed_layout.html");
URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(baseURL.c_str()), WebString::fromUTF8("fixed_layout.html"));
@@ -823,7 +823,7 @@ TEST(WebInputEventConversionTest, WebMouseWheelEventBuilder)
TEST(WebInputEventConversionTest, PlatformWheelEventBuilder)
{
- const std::string baseURL("http://www.test7.com/");
+ const std::string baseURL("http://www.test6.com/");
const std::string fileName("fixed_layout.html");
URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(baseURL.c_str()), WebString::fromUTF8("fixed_layout.html"));
« no previous file with comments | « Source/web/WebInputEventConversion.cpp ('k') | Source/web/tests/WebPluginContainerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698