| OLD | NEW |
| 1 Tests that InspectorCSSAgent formats the CSS style text based on the CSS model m
odifications. | 1 Tests that InspectorCSSAgent formats the CSS style text based on the CSS model m
odifications. |
| 2 | 2 |
| 3 Formatted | 3 Formatted |
| 4 Unformatted | 4 Unformatted |
| 5 | 5 |
| 6 Running: initFormattedStyle | 6 Running: initFormattedStyle |
| 7 | 7 |
| 8 Running: testFormattedInsertStart | 8 Running: testFormattedInsertStart |
| 9 raw cssText: | 9 raw cssText: |
| 10 { | 10 { |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 raw cssText: | 136 raw cssText: |
| 137 { | 137 { |
| 138 propA: valA; | 138 propA: valA; |
| 139 property1: value1; | 139 property1: value1; |
| 140 propB: valB; | 140 propB: valB; |
| 141 property2: value2; | 141 property2: value2; |
| 142 property3: value3; | 142 property3: value3; |
| 143 propC: valC; | 143 propC: valC; |
| 144 } | 144 } |
| 145 | 145 |
| 146 Running: testFormattedWithMeta |
| 147 raw cssText: |
| 148 { |
| 149 -webkit-animation: linear; |
| 150 propA: valA; |
| 151 property1: value1; |
| 152 propB: valB; |
| 153 property2: value2; |
| 154 property3: value3; |
| 155 propC: valC; |
| 156 } |
| 157 |
| 146 Running: initUnformattedStyle | 158 Running: initUnformattedStyle |
| 147 | 159 |
| 148 Running: testUnformattedInsertStart | 160 Running: testUnformattedInsertStart |
| 149 raw cssText: | 161 raw cssText: |
| 150 {firstProperty: firstValue;property1:value1;property2:value2;property3:value3;} | 162 {firstProperty: firstValue;property1:value1;property2:value2;property3:value3;} |
| 151 | 163 |
| 152 Running: testUnformattedRemoveStart | 164 Running: testUnformattedRemoveStart |
| 153 raw cssText: | 165 raw cssText: |
| 154 {property1:value1;property2:value2;property3:value3;} | 166 {property1:value1;property2:value2;property3:value3;} |
| 155 | 167 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 186 {property1:value1;/* property2:value2; *//* property3:value3; */} | 198 {property1:value1;/* property2:value2; *//* property3:value3; */} |
| 187 | 199 |
| 188 Running: testUnformattedEnableEnd | 200 Running: testUnformattedEnableEnd |
| 189 raw cssText: | 201 raw cssText: |
| 190 {property1:value1;/* property2:value2; */property3:value3;} | 202 {property1:value1;/* property2:value2; */property3:value3;} |
| 191 | 203 |
| 192 Running: testUnformattedEnableMiddle | 204 Running: testUnformattedEnableMiddle |
| 193 raw cssText: | 205 raw cssText: |
| 194 {property1:value1;property2:value2;property3:value3;} | 206 {property1:value1;property2:value2;property3:value3;} |
| 195 | 207 |
| OLD | NEW |