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

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

Issue 1941283002: DevTools: [SASS] start parsing CSS with SCSS parser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1-scss
Patch Set: rebaseline Created 4 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 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
11 div { 11 div {
12 /* This is a regular comment */ 12 /* This is a regular comment */
13 NEW-NAME: red; 13 NEW-NAME: red;
14 /* NEW-NAME: absolute; */ 14 /* NEW-NAME: absolute; */
15 NEW-NAME: block 15 NEW-NAME: block
16 } 16 }
17 17
18 18
19 Running: testSetPropertyValue 19 Running: testSetPropertyValue
20 div { 20 div {
21 /* This is a regular comment */ 21 /* This is a regular comment */
22 color:NEW-VALUE; 22 color:NEW-VALUE;
23 /* position:NEW-VALUE; */ 23 /* position:NEW-VALUE; */
24 display:NEW-VALUE} 24 display:NEW-VALUE
25 }
25 26
26 27
27 Running: testDisableProperties 28 Running: testDisableProperties
28 div { 29 div {
29 /* This is a regular comment */ 30 /* This is a regular comment */
30 /* color: red; */ 31 /* color: red; */
31 /* position: absolute; */ 32 /* position: absolute; */
32 /* display: block 33 /* display: block
33 */} 34 */}
34 35
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 Running: testComplexChange 125 Running: testComplexChange
125 div { 126 div {
126 /* This is a regular comment */ 127 /* This is a regular comment */
127 color:CHANGED; 128 color:CHANGED;
128 /* position: absolute; */ 129 /* position: absolute; */
129 CHANGED: block 130 CHANGED: block
130 ; 131 ;
131 NEW-NAME: NEW-VALUE;} 132 NEW-NAME: NEW-VALUE;}
132 133
133 134
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698