OLD | NEW |
1 Tests how SourceFormatter handles CSS sources | 1 Tests how SourceFormatter handles CSS sources |
2 | 2 |
3 Formatted: | 3 Formatted: |
4 @media screen { | 4 @media screen { |
5 html { | 5 html { |
6 color: green; | 6 color: green; |
7 foo-property: bar-value | 7 foo-property: bar-value |
8 } | 8 } |
9 } | 9 } |
10 } | 10 } |
11 | 11 |
12 body { | 12 body { |
13 background-color: black; | 13 background-color: black; |
14 } | 14 } |
15 | 15 |
16 Location mapping with formatted source: | 16 Location mapping with formatted source: |
17 Mapped locations: | 17 Mapped locations: |
18 0:15 -> 0:14 | 18 0:15 -> 0:14 -> 0:15 |
19 0:22 -> 1:9 | 19 0:22 -> 1:9 -> 0:22 |
20 0:65 -> 8:5 | 20 0:65 -> 8:5 -> 0:65 |
21 Live locations (updated: 3): | 21 Live locations (updated: 3): |
22 0:14 | 22 0:14 |
23 1:9 | 23 1:9 |
24 8:5 | 24 8:5 |
25 Location mapping without formatted source: | 25 Location mapping without formatted source: |
26 Mapped locations: | 26 Mapped locations: |
27 0:15 -> 0:15 | 27 0:15 -> 0:15 -> 0:15 |
28 0:22 -> 0:22 | 28 0:22 -> 0:22 -> 0:22 |
29 0:65 -> 0:65 | 29 0:65 -> 0:65 -> 0:65 |
30 Live locations (updated: 6): | 30 Live locations (updated: 6): |
31 0:15 | 31 0:15 |
32 0:22 | 32 0:22 |
33 0:65 | 33 0:65 |
34 | 34 |
OLD | NEW |