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

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

Issue 2681023003: Remove replaceComposition() calls in finishComposingText. (Closed)
Patch Set: Created 3 years, 10 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"
(...skipping 19 matching lines...) Expand all
30 PASS event.type is "textInput" 30 PASS event.type is "textInput"
31 PASS event.data is "" 31 PASS event.data is ""
32 PASS event.type is "compositionend" 32 PASS event.type is "compositionend"
33 PASS event.data is "" 33 PASS event.data is ""
34 PASS event.type is "textInput" 34 PASS event.type is "textInput"
35 PASS event.data is "8" 35 PASS event.data is "8"
36 PASS event.type is "compositionstart" 36 PASS event.type is "compositionstart"
37 PASS event.data is "" 37 PASS event.data is ""
38 PASS event.type is "compositionupdate" 38 PASS event.type is "compositionupdate"
39 PASS event.data is "9" 39 PASS event.data is "9"
40 PASS event.type is "compositionupdate"
41 PASS event.data is "9"
42 PASS event.type is "textInput"
43 PASS event.data is "9"
44 PASS event.type is "compositionend" 40 PASS event.type is "compositionend"
45 PASS event.data is "9" 41 PASS event.data is "9"
46 PASS event.type is "compositionstart" 42 PASS event.type is "compositionstart"
47 PASS event.data is "have" 43 PASS event.data is "have"
48 PASS event.type is "compositionupdate" 44 PASS event.type is "compositionupdate"
49 PASS event.data is "lost" 45 PASS event.data is "lost"
50 PASS test.value is "I lost a pen" 46 PASS test.value is "I lost a pen"
51 PASS event.type is "compositionupdate" 47 PASS event.type is "compositionupdate"
52 PASS event.data is "made" 48 PASS event.data is "made"
53 PASS event.type is "textInput" 49 PASS event.type is "textInput"
54 PASS event.data is "made" 50 PASS event.data is "made"
55 PASS event.type is "compositionend" 51 PASS event.type is "compositionend"
56 PASS event.data is "made" 52 PASS event.data is "made"
57 PASS test.value is "I made a pen" 53 PASS test.value is "I made a pen"
58 PASS successfullyParsed is true 54 PASS successfullyParsed is true
59 55
60 TEST COMPLETE 56 TEST COMPLETE
61 57
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698