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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sass/test-ast-editing-1-expected.txt

Issue 2020803002: DevTools: [LiveSASS] property enabling/disabling should not add spaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 Verifies AST editing of formatted source. 1 Verifies AST editing of formatted source.
2 2
3 div { 3 div {
4 /* This is a regular comment */ 4 /* This is a regular comment */
5 color: red; 5 color: red;
6 /* position: absolute; */ 6 /* position: absolute; */
7 display: block 7 display: block
8 } 8 }
9 9
10 Running: testSetPropertyName 10 Running: testSetPropertyName
(...skipping 20 matching lines...) Expand all
31 /* color: red; */ 31 /* color: red; */
32 /* position: absolute; */ 32 /* position: absolute; */
33 /* display: block 33 /* display: block
34 */} 34 */}
35 35
36 36
37 Running: testEnableProperties 37 Running: testEnableProperties
38 div { 38 div {
39 /* This is a regular comment */ 39 /* This is a regular comment */
40 color: red; 40 color: red;
41 position: absolute; 41 position: absolute;
42 display: block 42 display: block
43 } 43 }
44 44
45 45
46 Running: testRemoveFirstProperty 46 Running: testRemoveFirstProperty
47 div { 47 div {
48 /* This is a regular comment */ 48 /* This is a regular comment */
49 /* position: absolute; */ 49 /* position: absolute; */
50 display: block 50 display: block
51 } 51 }
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 Running: testComplexChange 125 Running: testComplexChange
126 div { 126 div {
127 /* This is a regular comment */ 127 /* This is a regular comment */
128 color: CHANGED; 128 color: CHANGED;
129 /* position: absolute; */ 129 /* position: absolute; */
130 CHANGED: block 130 CHANGED: block
131 ; 131 ;
132 NEW-NAME: NEW-VALUE;} 132 NEW-NAME: NEW-VALUE;}
133 133
134 134
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698