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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-html-2-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-2-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-html-2-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-html-2-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..29cb5450d6e1a344c0351807cff644fd6f5d9746
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-html-2-expected.txt
@@ -0,0 +1,84 @@
+Verifies JavaScript pretty-printing functionality.
+
+
+Running: testDocType
+====== 8< ------
+<!DOCTYPE HTML>
+<body>hello, world</body>
+
+------ >8 ======
+Correct mapping for <<body>>
+Correct mapping for <hello>
+Correct mapping for <</body>>
+
+Running: testComment
+====== 8< ------
+<!-- comment 1 -->
+<html>
+ <!-- comment 2-->
+ <meta/>
+ <body>
+ <!-- comment 3-->
+ <a>link</a>
+ </body>
+</html>
+
+------ >8 ======
+Correct mapping for <<body>>
+Correct mapping for <comment 1>
+Correct mapping for <comment 2>
+Correct mapping for <comment 3>
+Correct mapping for <link>
+
+Running: testNonJavascriptScriptTag
+====== 8< ------
+<div>
+ <script type='text/K'>
+ 2_&{&/x!/:2_!x}'!R
+ </script>
+</div>
+
+------ >8 ======
+Correct mapping for <type>
+Correct mapping for <R>
+Correct mapping for <</div>>
+Correct mapping for <</script>>
+
+Running: testList
+====== 8< ------
+<ul>
+ <li>foo
+ <li>bar
+ <li>baz
+ <li>
+ hello <b>world</b>
dgozman 2016/04/19 01:55:03 <li> hello <b>world</b>! <li> hello <b>world</b> <
lushnikov 2016/04/19 23:11:40 Done.
+ <li>another
+</ul>
+
+------ >8 ======
+Correct mapping for <foo>
+Correct mapping for <bar>
+Correct mapping for <baz>
+Correct mapping for <hello>
+Correct mapping for <world>
+Correct mapping for <another>
+
+Running: testAutomaticClosingTags
+====== 8< ------
+<a>
+ aaaa
+ <b>
+ bbbb1
+ <c>
+ cccc<d>dddd
+ </c>
+ bbbb2
+</a>
+
+------ >8 ======
+Correct mapping for <aaaa>
+Correct mapping for <bbbb1>
+Correct mapping for <bbbb2>
+Correct mapping for <cccc>
+Correct mapping for <dddd>
+

Powered by Google App Engine
This is Rietveld 408576698