| 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 |
| 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 |
| 28 Running: testDisableProperties | 28 Running: testDisableProperties |
| 29 div { | 29 div { |
| 30 /* This is a regular comment */ | 30 /* This is a regular comment */ |
| 31 /* color: red; */ | 31 /* color: red; */ |
| 32 /* position: absolute; */ | 32 /* position: absolute; */ |
| 33 /* display: block | 33 /* display: block |
| 34 */} | 34 */} |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 /* This is a regular comment */ | 118 /* This is a regular comment */ |
| 119 color: red; | 119 color: red; |
| 120 /* position: absolute; */ | 120 /* position: absolute; */ |
| 121 ; | 121 ; |
| 122 NEW-NAME: NEW-VALUE;} | 122 NEW-NAME: NEW-VALUE;} |
| 123 | 123 |
| 124 | 124 |
| 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 |