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