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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/ime-composition-events-001-expected.txt

Issue 1998783002: [IME] Fire 'compositionend' after 'textInput' event and all other DOM updates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add DCHECK for empty text, fix ImeTest.java Created 4 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
OLDNEW
1 This tests that calling input-method functions sends Composition Events and Text Events introduced in DOM Level 3. To test manually, enable an IME, input CJK ch aracters, and see this page doesn't show 'FAIL' lines. 1 This tests that calling input-method functions sends Composition Events and Text Events introduced in DOM Level 3. To test manually, enable an IME, input CJK ch aracters, and see this page doesn't show 'FAIL' lines.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS event.type is "compositionstart" 6 PASS event.type is "compositionstart"
7 PASS event.data is "" 7 PASS event.data is ""
8 PASS event.type is "compositionupdate" 8 PASS event.type is "compositionupdate"
9 PASS event.data is "1" 9 PASS event.data is "1"
10 PASS event.type is "compositionupdate" 10 PASS event.type is "compositionupdate"
11 PASS event.data is "2" 11 PASS event.data is "2"
12 PASS event.type is "compositionupdate" 12 PASS event.type is "compositionupdate"
13 PASS event.data is "3" 13 PASS event.data is "3"
14 PASS event.type is "compositionend" 14 PASS event.type is "compositionupdate"
15 PASS event.data is "4" 15 PASS event.data is "4"
16 PASS event.type is "textInput" 16 PASS event.type is "textInput"
17 PASS event.data is "4" 17 PASS event.data is "4"
18 PASS event.type is "compositionend"
19 PASS event.data is "4"
18 PASS event.type is "compositionstart" 20 PASS event.type is "compositionstart"
19 PASS event.data is "" 21 PASS event.data is ""
20 PASS event.type is "compositionupdate" 22 PASS event.type is "compositionupdate"
21 PASS event.data is "5" 23 PASS event.data is "5"
22 PASS event.type is "compositionupdate" 24 PASS event.type is "compositionupdate"
23 PASS event.data is "6" 25 PASS event.data is "6"
24 PASS event.type is "compositionupdate" 26 PASS event.type is "compositionupdate"
25 PASS event.data is "7" 27 PASS event.data is "7"
28 PASS event.type is "compositionupdate"
29 PASS event.data is ""
30 PASS event.type is "textInput"
31 PASS event.data is ""
26 PASS event.type is "compositionend" 32 PASS event.type is "compositionend"
27 PASS event.data is "" 33 PASS event.data is ""
28 PASS event.type is "textInput" 34 PASS event.type is "textInput"
29 PASS event.data is "8" 35 PASS event.data is "8"
30 PASS event.type is "compositionstart" 36 PASS event.type is "compositionstart"
31 PASS event.data is "" 37 PASS event.data is ""
32 PASS event.type is "compositionupdate" 38 PASS event.type is "compositionupdate"
33 PASS event.data is "9" 39 PASS event.data is "9"
34 PASS event.type is "compositionend" 40 PASS event.type is "compositionupdate"
35 PASS event.data is "9" 41 PASS event.data is "9"
36 PASS event.type is "textInput" 42 PASS event.type is "textInput"
37 PASS event.data is "9" 43 PASS event.data is "9"
44 PASS event.type is "compositionend"
45 PASS event.data is "9"
38 PASS event.type is "compositionstart" 46 PASS event.type is "compositionstart"
39 PASS event.data is "have" 47 PASS event.data is "have"
40 PASS event.type is "compositionupdate" 48 PASS event.type is "compositionupdate"
41 PASS event.data is "lost" 49 PASS event.data is "lost"
42 PASS test.value is "I lost a pen" 50 PASS test.value is "I lost a pen"
43 PASS event.type is "compositionend" 51 PASS event.type is "compositionupdate"
44 PASS event.data is "made" 52 PASS event.data is "made"
45 PASS event.type is "textInput" 53 PASS event.type is "textInput"
46 PASS event.data is "made" 54 PASS event.data is "made"
55 PASS event.type is "compositionend"
56 PASS event.data is "made"
47 PASS test.value is "I made a pen" 57 PASS test.value is "I made a pen"
48 PASS successfullyParsed is true 58 PASS successfullyParsed is true
49 59
50 TEST COMPLETE 60 TEST COMPLETE
51 61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698