| OLD | NEW |
| 1 Verifies CSS pretty-printing functionality. | 1 Verifies CSS pretty-printing functionality. |
| 2 | 2 |
| 3 | 3 |
| 4 Running: testSimpleCSS | 4 Running: testSimpleCSS |
| 5 ====== 8< ------ | 5 ====== 8< ------ |
| 6 a { | 6 a { |
| 7 /* pre-comment */ | 7 /* pre-comment */ |
| 8 color /* after name */ : /* before value */ red /* post-comment */ | 8 color /* after name */ : /* before value */ red /* post-comment */ |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 a { | 57 a { |
| 58 color: red; | 58 color: red; |
| 59 text-decoration: none | 59 text-decoration: none |
| 60 } | 60 } |
| 61 } | 61 } |
| 62 </style></body></html> | 62 </style></body></html> |
| 63 ------ >8 ====== | 63 ------ >8 ====== |
| 64 | 64 |
| 65 Running: testNonZeroLineMapping | 65 Running: testNonZeroLineMapping |
| 66 ====== 8< ------ | 66 ====== 8< ------ |
| 67 | |
| 68 | |
| 69 div { | 67 div { |
| 70 color: red; | 68 color: red; |
| 71 } | 69 } |
| 72 | 70 |
| 73 ------ >8 ====== | 71 ------ >8 ====== |
| 74 Correct mapping for <div> | 72 Correct mapping for <div> |
| 75 Correct mapping for <color> | 73 Correct mapping for <color> |
| 76 Correct mapping for <red> | 74 Correct mapping for <red> |
| 77 | 75 |
| OLD | NEW |