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

Side by Side Diff: LayoutTests/fast/ime/inputmethodcontext-confirmcomposition-expected.txt

Issue 1162853002: Remove IME API from Blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove interface in WebWidgets.h Created 5 years, 6 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
OLDNEW
(Empty)
1 This tests confirmComposition() of InputMethodContext.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS context instanceof InputMethodContext is true
7 Check if composition text 'abcd' is committed properly.
8 PASS compositionstart fired
9 PASS compositionend fired
10 PASS event.type is "compositionend"
11 PASS event.data is "abcd"
12 PASS textInput fired
13 PASS event.type is "textInput"
14 PASS event.data is "abcd"
15 PASS test.value is "abcd"
16 Check if no compositionend event will occur when composition is empty.
17 PASS test.value is "abcd"
18 Check if composition text 'efgh' is committed properly, and appended to the inpu t field's value.
19 PASS compositionstart fired
20 PASS compositionend fired
21 PASS event.type is "compositionend"
22 PASS event.data is "efgh"
23 PASS textInput fired
24 PASS event.type is "textInput"
25 PASS event.data is "efgh"
26 PASS test.value is "abcdefgh"
27 Check if confirmComposition on non-focused element doesn't affect the focused ed itor.
28 PASS compositionstart fired
29 PASS compositionend fired
30 PASS event.type is "compositionend"
31 PASS event.data is ""
32 PASS test.value is "abcdefgh"
33 PASS successfullyParsed is true
34
35 TEST COMPLETE
36
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698