Chromium Code Reviews| 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> |
| + |