Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / sources / autocomplete-general-expected.txt
blob440bbea818dc008b0bd27afb0fa3c7708fd3b9a6
1 This test checks how text editor updates autocompletion dictionary in a response to user input.
4 Running: testCompletionsShowUpOnKeyPress
5 ========= Text in editor =========
6 name1 name2 name3 name4
7 name1|
8 ======= Words in dictionary =======
9 [name1, name2, name3, name4]
10 =============
12 Running: testSetInitialText
13 ========= Text in editor =========
14 |one two three3_
15 four five
16 a_b
17 six
18 123foo
19 132
20 seven
21 ======= Words in dictionary =======
22 [a_b, five, four, one, seven, six, three3_, two]
23 =============
25 Running: testAlphaNumericWords
26 ========= Text in editor =========
27 |2 2foo foo2 2foo4 foo3bar
28 ======= Words in dictionary =======
29 [foo2, foo3bar]
30 =============
32 Running: testSetText
33 ========= Text in editor =========
34 |dog cat 'mouse';dog bird
35 ======= Words in dictionary =======
36 [bird, cat, dog, mouse]
37 =============
39 Running: testSimpleEdit
40 ========= Text in editor =========
41 do| cat 'mouse';dog bird
42 ======= Words in dictionary =======
43 [bird, cat, do, dog, mouse]
44 =============
46 Running: testDeleteOneDogAndOneCat
47 ========= Text in editor =========
48 | 'mouse';dog bird
49 ======= Words in dictionary =======
50 [bird, dog, mouse]
51 =============