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

Unified 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, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-3-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-3-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-3-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..84d3898f8b991c7445386a8ee00432ae186fd219
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-3-expected.txt
@@ -0,0 +1,87 @@
+Verifies CSS pretty-printing functionality.
+
+
+Running: testMediaRule
+====== 8< ------
+@media screen,print {
+ body {
+ line-height: 1.2
+ }
+}
+
+span {
+ line-height: 10px
+}
+
+------ >8 ======
+Correct mapping for <@media>
+Correct mapping for <screen>
+Correct mapping for <print>
+Correct mapping for <body>
+Correct mapping for <line-height>
+Correct mapping for <1.2>
+
+Running: testNamespaceRule
+====== 8< ------
+@namespace svg url(http://www.w3.org/2000/svg);g {
+ color: red
+}
+
+------ >8 ======
+Correct mapping for <namespace>
+Correct mapping for <url>
+Correct mapping for <color>
+Correct mapping for <red>
+
+Running: testPageRule
+====== 8< ------
+@page :first {
+ margin: 2in 3in;
+}
+
+span {
+ color: blue
+}
+
+------ >8 ======
+Correct mapping for <page>
+Correct mapping for <first>
+Correct mapping for <margin>
+Correct mapping for <3in>
+
+Running: testSupportsRule
+====== 8< ------
+@supports(--foo:green) {
+ body {
+ color: green;
+ }
+}
+
+#content {
+ font-size: 14px
+}
+
+------ >8 ======
+Correct mapping for <supports>
+Correct mapping for <foo>
+Correct mapping for <body>
+Correct mapping for <color>
+
+Running: testViewportRule
+====== 8< ------
+@viewport {
+ zoom:0.75;min-zoom: 0.5;
+ max-zoom: 0.9;
+}
+
+footer {
+ position: fixed;
+ bottom: 0;
+}
+
+------ >8 ======
+Correct mapping for <viewport>
+Correct mapping for <zoom>
+Correct mapping for <0.5>
+Correct mapping for <0.9>
+

Powered by Google App Engine
This is Rietveld 408576698