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

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

Issue 2372493002: Workaround for setComposition styling clobber (Closed)
Patch Set: Fix a layout test Created 4 years, 2 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"
yabinh 2016/09/26 10:10:32 Note that we call commitText() to update the compo
aelias_OOO_until_Jul13 2016/09/26 22:05:40 This side effect is undesired, so please use inser
yabinh 2016/09/27 04:30:22 Done.
10 PASS event.type is "compositionupdate" 10 PASS event.type is "textInput"
11 PASS event.data is "2" 11 PASS event.data is "2"
12 PASS event.type is "compositionupdate" 12 PASS event.type is "textInput"
13 PASS event.data is "3" 13 PASS event.data is "3"
14 PASS event.type is "compositionupdate" 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" 18 PASS event.type is "compositionend"
19 PASS event.data is "4" 19 PASS event.data is "4"
20 PASS event.type is "compositionstart" 20 PASS event.type is "compositionstart"
21 PASS event.data is "" 21 PASS event.data is ""
22 PASS event.type is "compositionupdate" 22 PASS event.type is "compositionupdate"
23 PASS event.data is "5" 23 PASS event.data is "5"
24 PASS event.type is "compositionupdate" 24 PASS event.type is "textInput"
25 PASS event.data is "6" 25 PASS event.data is "6"
26 PASS event.type is "compositionupdate" 26 PASS event.type is "textInput"
27 PASS event.data is "7" 27 PASS event.data is "7"
28 PASS event.type is "compositionupdate" 28 PASS event.type is "compositionupdate"
29 PASS event.data is "" 29 PASS event.data is ""
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"
(...skipping 15 matching lines...) Expand all
52 PASS event.data is "made" 52 PASS event.data is "made"
53 PASS event.type is "textInput" 53 PASS event.type is "textInput"
54 PASS event.data is "made" 54 PASS event.data is "made"
55 PASS event.type is "compositionend" 55 PASS event.type is "compositionend"
56 PASS event.data is "made" 56 PASS event.data is "made"
57 PASS test.value is "I made a pen" 57 PASS test.value is "I made a pen"
58 PASS successfullyParsed is true 58 PASS successfullyParsed is true
59 59
60 TEST COMPLETE 60 TEST COMPLETE
61 61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698