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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-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-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-expected.txt
deleted file mode 100644
index 71413eb5596fa121541942d274be2d8e284ba713..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-css-expected.txt
+++ /dev/null
@@ -1,81 +0,0 @@
-Verifies CSS pretty-printing functionality.
-
-
-Running: testSimpleCSS
-====== 8< ------
-a {
- /* pre-comment */
- color /* after name */ : /* before value */ red /* post-comment */
-}
-
------- >8 ======
-
-Running: testComplexCSS
-====== 8< ------
-@media screen {
- html {
- color: green;
- foo-property: bar-value
- }
-}
-}
-
-body {
- background-color: black;
-}
-
------- >8 ======
-Correct mapping for <@media>
-Correct mapping for <screen>
-Correct mapping for <html>
-Correct mapping for <color>
-Correct mapping for <green>
-Correct mapping for <foo-property>
-Correct mapping for <bar-value>
-Correct mapping for <body>
-Correct mapping for <background>
-Correct mapping for <black>
-
-Running: testFormatInlinedStyles
-====== 8< ------
-<html>
- <body>
- <style>
- @-webkit-keyframes {
- from {
- left: 0
- }
-
- to {
- left: 100px;
- }
- }
- </style>
- <style>
- badbraces {
- }
- }
-
- @media screen {
- a {
- color: red;
- text-decoration: none
- }
- }
- </style>
-</body>
-</html>
-
------- >8 ======
-
-Running: testNonZeroLineMapping
-====== 8< ------
-div {
- color: red;
-}
-
------- >8 ======
-Correct mapping for <div>
-Correct mapping for <color>
-Correct mapping for <red>
-

Powered by Google App Engine
This is Rietveld 408576698