Chromium Code Reviews| 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 |
| 11 ------ >8 ====== | 11 ------ >8 ====== |
| 12 Correct mapping for <pre-comment> | |
| 13 Correct mapping for <post-comment> | |
| 12 | 14 |
| 13 Running: testComplexCSS | 15 Running: testComplexCSS |
| 14 ====== 8< ------ | 16 ====== 8< ------ |
| 15 @media screen { | 17 @media screen { |
| 16 html { | 18 html { |
| 17 color: green; | 19 color: green; |
| 18 foo-property: bar-value | 20 foo-property: bar-value |
| 19 } | 21 } |
| 20 } | 22 } |
| 21 } | 23 } |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 72 ====== 8< ------ | 74 ====== 8< ------ |
| 73 div { | 75 div { |
| 74 color: red; | 76 color: red; |
| 75 } | 77 } |
| 76 | 78 |
| 77 ------ >8 ====== | 79 ------ >8 ====== |
| 78 Correct mapping for <div> | 80 Correct mapping for <div> |
| 79 Correct mapping for <color> | 81 Correct mapping for <color> |
| 80 Correct mapping for <red> | 82 Correct mapping for <red> |
| 81 | 83 |
| 84 Running: testComplexSelector | |
| 85 ====== 8< ------ | |
| 86 a.b.c:hover,.d.e.f.g::before,h.i { | |
|
dgozman
2016/05/26 19:37:43
Let's have a test with this selector inside html.
lushnikov
2016/05/26 19:44:58
Done.
| |
| 87 color: red; | |
| 88 } | |
| 89 | |
| 90 ------ >8 ====== | |
| 91 Correct mapping for <a> | |
| 92 Correct mapping for <.b> | |
| 93 Correct mapping for <.c> | |
| 94 Correct mapping for <.d> | |
| 95 Correct mapping for <.e> | |
| 96 Correct mapping for <.f> | |
| 97 Correct mapping for <.g> | |
| 98 Correct mapping for <h> | |
| 99 Correct mapping for <.i> | |
| 100 Correct mapping for <color> | |
| 101 Correct mapping for <red> | |
| 102 | |
| OLD | NEW |