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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-2-expected.txt

Issue 2012953002: DevTools: fix css pretty-print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments 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-2-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-2-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-2-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..03fa5d53ca38ceb6efc8e7699925ffa6c3902d73
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-2-expected.txt
@@ -0,0 +1,89 @@
+Verifies CSS pretty-printing functionality.
+
+
+Running: testFontFace
+====== 8< ------
+@font-face {
+ font-family: MyHelvetica;
+ src: local('Helvetica Neue Bold'),local('HelveticaNeue-Bold'),url(MgOpenModernaBold.ttf);
+ font-weight: bold;
+}
+
+div {
+ color: red
+}
+
+------ >8 ======
+Correct mapping for <font-face>
+Correct mapping for <red>
+
+Running: testCharsetRule
+====== 8< ------
+@charset 'iso-8859-15';p {
+ margin: 0
+}
+
+------ >8 ======
+Correct mapping for <charset>
+Correct mapping for <iso>
+Correct mapping for <margin>
+
+Running: testImportRule
+====== 8< ------
+@import url('bluish.css') projection,tv;span {
+ border: 1px solid black
+}
+
+------ >8 ======
+Correct mapping for <import>
+Correct mapping for <bluish>
+Correct mapping for <projection>
+Correct mapping for <span>
+Correct mapping for <border>
+Correct mapping for <black>
+
+Running: testImportWithMediaQueryRule
+====== 8< ------
+@import url('landscape.css') screen and (orientation: landscape);
+article {
+ background: yellow
+}
+
+------ >8 ======
+Correct mapping for <import>
+Correct mapping for <url>
+Correct mapping for <orientation>
+Correct mapping for <article>
+Correct mapping for <background>
+Correct mapping for <yellow>
+
+Running: testKeyframesRule
+====== 8< ------
+p {
+ animation-duration: 3s;
+}
+
+@keyframes slidein {
+ from {
+ margin-left: 100%;
+ width: 300%;
+ }
+
+ to {
+ margin-left: 0%;
+ width: 100%;
+ }
+}
+
+p {
+ animation-name: slidein
+}
+
+------ >8 ======
+Correct mapping for <animation-duration>
+Correct mapping for <3s>
+Correct mapping for <keyframes>
+Correct mapping for <from>
+Correct mapping for <300%>
+Correct mapping for <animation-name>
+

Powered by Google App Engine
This is Rietveld 408576698