OLD | NEW |
1 Verifies that formatter adds a semicolon when enabling property. | 1 Verifies that formatter adds a semicolon when enabling property. |
2 | 2 |
3 Formatted | 3 Formatted |
4 | 4 |
5 Running: initFormattedStyle | 5 Running: initFormattedStyle |
6 | 6 |
7 Running: testFormattedDisableLast | 7 Running: testFormattedDisableLast |
8 raw cssText: | 8 raw cssText: |
9 { | 9 { |
10 property1: value1; | 10 color: red; |
11 /* property2: value2 */ | 11 /* margin: 0 */ |
12 } | 12 } |
13 | 13 |
14 Running: testFormattedInsertEnd | 14 Running: testFormattedInsertEnd |
15 raw cssText: | 15 raw cssText: |
16 { | 16 { |
17 property1: value1; | 17 color: red; |
18 /* property2: value2 */ | 18 /* margin: 0 */ |
19 endProperty: endValue; | 19 endProperty: endValue; |
20 } | 20 } |
21 | 21 |
22 Running: testFormattedEnable | 22 Running: testFormattedEnable |
23 raw cssText: | 23 raw cssText: |
24 { | 24 { |
25 property1: value1; | 25 color: red; |
26 property2: value2; | 26 margin: 0; |
27 endProperty: endValue; | 27 endProperty: endValue; |
28 } | 28 } |
29 | 29 |
OLD | NEW |