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

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

Issue 2028863002: DevTools: fix css pretty-print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: Created 4 years, 6 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
(Empty)
1 Verifies CSS pretty-printing functionality.
2
3
4 Running: testMediaRule
5 ====== 8< ------
6 @media screen,print {
7 body {
8 line-height: 1.2
9 }
10 }
11
12 span {
13 line-height: 10px
14 }
15
16 ------ >8 ======
17 Correct mapping for <@media>
18 Correct mapping for <screen>
19 Correct mapping for <print>
20 Correct mapping for <body>
21 Correct mapping for <line-height>
22 Correct mapping for <1.2>
23
24 Running: testNamespaceRule
25 ====== 8< ------
26 @namespace svg url(http://www.w3.org/2000/svg);g {
27 color: red
28 }
29
30 ------ >8 ======
31 Correct mapping for <namespace>
32 Correct mapping for <url>
33 Correct mapping for <color>
34 Correct mapping for <red>
35
36 Running: testPageRule
37 ====== 8< ------
38 @page :first {
39 margin: 2in 3in;
40 }
41
42 span {
43 color: blue
44 }
45
46 ------ >8 ======
47 Correct mapping for <page>
48 Correct mapping for <first>
49 Correct mapping for <margin>
50 Correct mapping for <3in>
51
52 Running: testSupportsRule
53 ====== 8< ------
54 @supports(--foo:green) {
55 body {
56 color: green;
57 }
58 }
59
60 #content {
61 font-size: 14px
62 }
63
64 ------ >8 ======
65 Correct mapping for <supports>
66 Correct mapping for <foo>
67 Correct mapping for <body>
68 Correct mapping for <color>
69
70 Running: testViewportRule
71 ====== 8< ------
72 @viewport {
73 zoom:0.75;min-zoom: 0.5;
74 max-zoom: 0.9;
75 }
76
77 footer {
78 position: fixed;
79 bottom: 0;
80 }
81
82 ------ >8 ======
83 Correct mapping for <viewport>
84 Correct mapping for <zoom>
85 Correct mapping for <0.5>
86 Correct mapping for <0.9>
87
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698