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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/autocomplete-scss-expected.txt

Issue 2897193003: DevTools: Fix up CSSMetadata for 2017 (Closed)
Patch Set: Created 3 years, 7 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 The test verifies autocomplete suggestions for SCSS file. 1 The test verifies autocomplete suggestions for SCSS file.
2 2
3 3
4 Running: testPropertyValueSuggestionsBefore$ 4 Running: testPropertyValueSuggestionsBefore$
5 ========= Selection In Editor ========= 5 ========= Selection In Editor =========
6 @mixin my-border-style($style) { 6 @mixin my-border-style($style) {
7 border-style: |$; 7 border-style: |$;
8 } 8 }
9 ======= Autocomplete Suggestions ======= 9 ======= Autocomplete Suggestions =======
10 [dashed, dotted, double, groove, hidden, inherit, initial, inset, none, outset, ridge, solid] 10 [dashed, dotted, double, groove, hidden, inherit, initial, inset, none, outset, ridge, solid, unset]
11 11
12 Running: testPropertyValueSuggestionsAfter$ 12 Running: testPropertyValueSuggestionsAfter$
13 ========= Selection In Editor ========= 13 ========= Selection In Editor =========
14 @mixin my-border-style($style) { 14 @mixin my-border-style($style) {
15 border-style: $|; 15 border-style: $|;
16 } 16 }
17 ======= Autocomplete Suggestions ======= 17 ======= Autocomplete Suggestions =======
18 [$style] 18 [$style]
19 19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698