| OLD | NEW |
| 1 The test verifies autocomplete suggestions for CSS file. | 1 The test verifies autocomplete suggestions for CSS file. |
| 2 | 2 |
| 3 | 3 |
| 4 Running: testClassNameAutocomplete | 4 Running: testClassNameAutocomplete |
| 5 ========= Selection In Editor ========= | 5 ========= Selection In Editor ========= |
| 6 .red { color: red } | 6 .red { color: red } |
| 7 .blue { color: blue } | 7 .blue { color: blue } |
| 8 .| | 8 .| |
| 9 ======= Autocomplete Suggestions ======= | 9 ======= Autocomplete Suggestions ======= |
| 10 [.red, .blue] | 10 [.red, .blue] |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 .my-class { -|webkit-border: 1px solid black; -webkit-color: blue; | 21 .my-class { -|webkit-border: 1px solid black; -webkit-color: blue; |
| 22 text-align: } | 22 text-align: } |
| 23 ======= Autocomplete Suggestions ======= | 23 ======= Autocomplete Suggestions ======= |
| 24 [-webkit-color] | 24 [-webkit-color] |
| 25 | 25 |
| 26 Running: testPropertyValueAutocomplete1 | 26 Running: testPropertyValueAutocomplete1 |
| 27 ========= Selection In Editor ========= | 27 ========= Selection In Editor ========= |
| 28 .red { border-style: | | 28 .red { border-style: | |
| 29 /* some other words to mess up */ | 29 /* some other words to mess up */ |
| 30 ======= Autocomplete Suggestions ======= | 30 ======= Autocomplete Suggestions ======= |
| 31 [dashed, dotted, double, groove, hidden, inherit, initial, inset, none, outset,
ridge, solid] | 31 [dashed, dotted, double, groove, hidden, inherit, initial, inset, none, outset,
ridge, solid, unset] |
| 32 | 32 |
| 33 Running: testPropertyValueAutocomplete2 | 33 Running: testPropertyValueAutocomplete2 |
| 34 ========= Selection In Editor ========= | 34 ========= Selection In Editor ========= |
| 35 .red { border-style: d| | 35 .red { border-style: d| |
| 36 /* dial drummer dig */ | 36 /* dial drummer dig */ |
| 37 ======= Autocomplete Suggestions ======= | 37 ======= Autocomplete Suggestions ======= |
| 38 [dashed, dotted, double] | 38 [dashed, dotted, double] |
| 39 | 39 |
| 40 Running: testPropertyValueAutocomplete3 | 40 Running: testPropertyValueAutocomplete3 |
| 41 ========= Selection In Editor ========= | 41 ========= Selection In Editor ========= |
| 42 .red { border-style: z| | 42 .red { border-style: z| |
| 43 /* zipper zorro zion */ | 43 /* zipper zorro zion */ |
| 44 ======= Autocomplete Suggestions ======= | 44 ======= Autocomplete Suggestions ======= |
| 45 [] | 45 [] |
| 46 | 46 |
| 47 Running: testPropertyValueAutocomplete4 | 47 Running: testPropertyValueAutocomplete4 |
| 48 ========= Selection In Editor ========= | 48 ========= Selection In Editor ========= |
| 49 .red { border-style/* comment */: /* comment */| | 49 .red { border-style/* comment */: /* comment */| |
| 50 ======= Autocomplete Suggestions ======= | 50 ======= Autocomplete Suggestions ======= |
| 51 [dashed, dotted, double, groove, hidden, inherit, initial, inset, none, outset,
ridge, solid] | 51 [dashed, dotted, double, groove, hidden, inherit, initial, inset, none, outset,
ridge, solid, unset] |
| 52 | 52 |
| 53 Running: testPropertyValueAutocomplete5 | 53 Running: testPropertyValueAutocomplete5 |
| 54 ========= Selection In Editor ========= | 54 ========= Selection In Editor ========= |
| 55 .my-class { -webkit-border: 1px solid black; -webkit-color: blue; | 55 .my-class { -webkit-border: 1px solid black; -webkit-color: blue; |
| 56 text-align: |} | 56 text-align: |} |
| 57 ======= Autocomplete Suggestions ======= | 57 ======= Autocomplete Suggestions ======= |
| 58 [-webkit-auto, -webkit-center, -webkit-left, -webkit-right, center, end, inherit
, initial, justify, left, right, start] | 58 [-webkit-auto, -webkit-center, -webkit-left, -webkit-match-parent, -webkit-right
, center, end, inherit, initial, justify, left, right, start, unset] |
| 59 | 59 |
| 60 Running: verifySuggestionsOnColumnTypedIn | 60 Running: verifySuggestionsOnColumnTypedIn |
| 61 .green { | 61 .green { |
| 62 display| | 62 display| |
| 63 Suggestions displayed on ':' symbol typed in: | 63 Suggestions displayed on ':' symbol typed in: |
| 64 [-webkit-box, -webkit-inline-box, block, contents, flex, flow-root, grid, inheri
t, initial, inline, inline-block, inline-flex, inline-grid, inline-table, list-i
tem, none, run-in, table, table-caption, table-cell, table-column, table-column-
group, table-footer-group, table-header-group, table-row, table-row-group] | 64 [-webkit-box, -webkit-inline-box, block, contents, flex, flow-root, grid, inheri
t, initial, inline, inline-block, inline-flex, inline-grid, inline-table, list-i
tem, none, table, table-caption, table-cell, table-column, table-column-group, t
able-footer-group, table-header-group, table-row, table-row-group, unset] |
| 65 | 65 |
| OLD | NEW |