OLD | NEW |
---|---|
(Empty) | |
1 Verifies JavaScript pretty-printing functionality. | |
2 | |
3 | |
4 Running: simpleHTML | |
5 ====== 8< ------ | |
6 <html> | |
7 <head> | |
8 <title>test</title> | |
9 </head> | |
10 </html> | |
11 | |
12 ------ >8 ====== | |
13 Correct mapping for <</head>> | |
14 Correct mapping for <test> | |
15 Correct mapping for <</title>> | |
16 | |
17 Running: selfClosingTags | |
18 ====== 8< ------ | |
19 <html> | |
20 <head> | |
21 <meta> | |
22 </head> | |
23 <img> | |
24 <hr/> | |
25 </html> | |
26 | |
27 ------ >8 ====== | |
28 Correct mapping for <meta> | |
29 Correct mapping for <hr> | |
30 Correct mapping for <<html>> | |
31 Correct mapping for <</html>> | |
32 | |
33 Running: erroneousSelfClosingTags | |
34 ====== 8< ------ | |
35 <head> | |
36 <meta> | |
37 <meta></meta> | |
38 <br/></br> | |
39 <link></link> | |
40 <title>test</title> | |
41 </head> | |
42 | |
43 ------ >8 ====== | |
44 Correct mapping for <<br/>> | |
45 Correct mapping for <<title>> | |
46 Correct mapping for <test> | |
47 Correct mapping for <</head>> | |
48 | |
49 Running: testAttributes | |
50 ====== 8< ------ | |
51 <body> | |
52 <canvas width=100 height=100></canvas> | |
dgozman
2016/04/19 01:55:02
myattr="</canvas>"
lushnikov
2016/04/19 23:11:40
Done.
| |
53 </body> | |
54 | |
55 ------ >8 ====== | |
56 Correct mapping for <<body>> | |
57 Correct mapping for <width> | |
58 Correct mapping for <height> | |
59 Correct mapping for <</canvas>> | |
60 | |
61 Running: testCustomElements | |
62 ====== 8< ------ | |
63 <body> | |
64 <custom-time year=2016 day=1 month=1> | |
65 <div>minutes/seconds</div> | |
66 </custom-time> | |
67 </body> | |
68 | |
69 ------ >8 ====== | |
70 Correct mapping for <<body>> | |
71 Correct mapping for <custom-time> | |
72 Correct mapping for <year> | |
73 Correct mapping for <month> | |
74 Correct mapping for <</body>> | |
75 | |
OLD | NEW |