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

Unified Diff: third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp

Issue 2558643003: [InputEvent] Move 'beforeinput' logic into |CompositeEditCommand::willApplyEditing()| (3/3) (Closed)
Patch Set: yosin's review, fix nits Created 4 years 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
Index: third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp
diff --git a/third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp b/third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp
index f9502ff3eb02b63581dbe0c1a107db6f26a00fae..f15dc8749e620fa353e3a2f248ef2391e11da279 100644
--- a/third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp
+++ b/third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp
@@ -953,7 +953,7 @@ TEST_F(InputMethodControllerTest, CompositionInputEventForDelete) {
// Delete the existing composition.
document().setTitle(emptyString());
controller().setComposition("", underlines, 0, 0);
- EXPECT_STREQ("beforeinput.data:;compositionend.data:;",
+ EXPECT_STREQ("beforeinput.data:null;input.data:null;compositionend.data:;",
document().title().utf8().data());
}

Powered by Google App Engine
This is Rietveld 408576698