Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-expected.txt

Issue 1894343002: DevTools: pretty-print HTML (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 20 matching lines...) Expand all
31 Correct mapping for <color> 31 Correct mapping for <color>
32 Correct mapping for <green> 32 Correct mapping for <green>
33 Correct mapping for <foo-property> 33 Correct mapping for <foo-property>
34 Correct mapping for <bar-value> 34 Correct mapping for <bar-value>
35 Correct mapping for <body> 35 Correct mapping for <body>
36 Correct mapping for <background> 36 Correct mapping for <background>
37 Correct mapping for <black> 37 Correct mapping for <black>
38 38
39 Running: testFormatInlinedStyles 39 Running: testFormatInlinedStyles
40 ====== 8< ------ 40 ====== 8< ------
41 <html><body><style> 41 <html>
42 @-webkit-keyframes { 42 <body>
43 from { 43 <style>
44 left: 0 44 @-webkit-keyframes {
45 } 45 from {
46 left: 0
47 }
46 48
47 to { 49 to {
48 left: 100px; 50 left: 100px;
49 } 51 }
50 } 52 }
51 </style><style> 53 </style>
52 badbraces { 54 <style>
53 } 55 badbraces {
54 } 56 }
57 }
55 58
56 @media screen { 59 @media screen {
57 a { 60 a {
58 color: red; 61 color: red;
59 text-decoration: none 62 text-decoration: none
60 } 63 }
61 } 64 }
62 </style></body></html> 65 </style>
66 </body>
67 </html>
68
63 ------ >8 ====== 69 ------ >8 ======
64 70
65 Running: testNonZeroLineMapping 71 Running: testNonZeroLineMapping
66 ====== 8< ------ 72 ====== 8< ------
67 div { 73 div {
68 color: red; 74 color: red;
69 } 75 }
70 76
71 ------ >8 ====== 77 ------ >8 ======
72 Correct mapping for <div> 78 Correct mapping for <div>
73 Correct mapping for <color> 79 Correct mapping for <color>
74 Correct mapping for <red> 80 Correct mapping for <red>
75 81
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698