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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-html-1-expected.txt

Issue 1894343002: DevTools: pretty-print HTML (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-html-1-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-html-1-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-html-1-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5eac72ec7fb0f515c46eab29479ef9bef134b15b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-html-1-expected.txt
@@ -0,0 +1,75 @@
+Verifies JavaScript pretty-printing functionality.
+
+
+Running: simpleHTML
+====== 8< ------
+<html>
+ <head>
+ <title>test</title>
+ </head>
+</html>
+
+------ >8 ======
+Correct mapping for <</head>>
+Correct mapping for <test>
+Correct mapping for <</title>>
+
+Running: selfClosingTags
+====== 8< ------
+<html>
+ <head>
+ <meta>
+ </head>
+ <img>
+ <hr/>
+</html>
+
+------ >8 ======
+Correct mapping for <meta>
+Correct mapping for <hr>
+Correct mapping for <<html>>
+Correct mapping for <</html>>
+
+Running: erroneousSelfClosingTags
+====== 8< ------
+<head>
+ <meta>
+ <meta></meta>
+ <br/></br>
+ <link></link>
+ <title>test</title>
+</head>
+
+------ >8 ======
+Correct mapping for <<br/>>
+Correct mapping for <<title>>
+Correct mapping for <test>
+Correct mapping for <</head>>
+
+Running: testAttributes
+====== 8< ------
+<body>
+ <canvas width=100 height=100></canvas>
dgozman 2016/04/19 01:55:02 myattr="</canvas>"
lushnikov 2016/04/19 23:11:40 Done.
+</body>
+
+------ >8 ======
+Correct mapping for <<body>>
+Correct mapping for <width>
+Correct mapping for <height>
+Correct mapping for <</canvas>>
+
+Running: testCustomElements
+====== 8< ------
+<body>
+ <custom-time year=2016 day=1 month=1>
+ <div>minutes/seconds</div>
+ </custom-time>
+</body>
+
+------ >8 ======
+Correct mapping for <<body>>
+Correct mapping for <custom-time>
+Correct mapping for <year>
+Correct mapping for <month>
+Correct mapping for <</body>>
+

Powered by Google App Engine
This is Rietveld 408576698