| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |