Skip to content

Commit a9f4496

Browse files
fb55flavorjones
andauthored
Add tests to increase spec coverage
parse5 is now tracking the test coverage of its codebase. The tests here all cover areas that previously didn't have tests. Co-authored-by: Mike Dalessio <[email protected]>
1 parent 8b45ec2 commit a9f4496

File tree

5 files changed

+129
-0
lines changed

5 files changed

+129
-0
lines changed

tree-construction/quirks01.dat

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#data
2+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
3+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"><p><table>
4+
#errors
5+
(2,54): unknown-doctype
6+
(2,64): eof-in-table
7+
#document
8+
| <!DOCTYPE html "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
9+
| <html>
10+
| <head>
11+
| <body>
12+
| <p>
13+
| <table>
14+
15+
#data
16+
<!DOCTYPE html SYSTEM "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd"><p><table>
17+
#errors
18+
(1,83): unknown-doctype
19+
(1,93): eof-in-table
20+
#document
21+
| <!DOCTYPE html "" "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd">
22+
| <html>
23+
| <head>
24+
| <body>
25+
| <p>
26+
| <table>
27+
28+
#data
29+
<!DOCTYPE html PUBLIC "html"><p><table>
30+
#errors
31+
(1,30): unknown-doctype
32+
(1,39): eof-in-table
33+
#document
34+
| <!DOCTYPE html "html" "">
35+
| <html>
36+
| <head>
37+
| <body>
38+
| <p>
39+
| <table>
40+
41+
#data
42+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
43+
"http://www.w3.org/TR/html4/strict.dtd"><p><table>
44+
#errors
45+
(2,43): unknown-doctype
46+
(2,53): eof-in-table
47+
#document
48+
| <!DOCTYPE html "-//W3C//DTD HTML 3.2//EN" "http://www.w3.org/TR/html4/strict.dtd">
49+
| <html>
50+
| <head>
51+
| <body>
52+
| <p>
53+
| <table>

tree-construction/tables01.dat

+14
Original file line numberDiff line numberDiff line change
@@ -306,3 +306,17 @@
306306
| <table>
307307
| <s>
308308
| <table>
309+
310+
#data
311+
<table>a<!doctype html>
312+
#errors
313+
(1,1): expected-doctype-but-got-start-tag
314+
(1,8): illegal-character-token
315+
(1,9): illegal-doctype
316+
(1,24): expected-closing-tag-but-got-eof
317+
#document
318+
| <html>
319+
| <head>
320+
| <body>
321+
| "a"
322+
| <table>

tree-construction/tests2.dat

+10
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,16 @@
584584
| <head>
585585
| <body>
586586

587+
#data
588+
<!DOCTYPE html> <!DOCTYPE html>
589+
#errors
590+
Line: 1 Col: 31 Unexpected DOCTYPE. Ignored.
591+
#document
592+
| <!DOCTYPE html>
593+
| <html>
594+
| <head>
595+
| <body>
596+
587597
#data
588598
test
589599
test

tree-construction/tests4.dat

+16
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,19 @@ head
5656
#document
5757
| <title>
5858
| "setting head's innerHTML"
59+
60+
#data
61+
direct <title> content
62+
#errors
63+
#document-fragment
64+
title
65+
#document
66+
| "direct <title> content"
67+
68+
#data
69+
<!-- inside </script> -->
70+
#errors
71+
#document-fragment
72+
script
73+
#document
74+
| "<!-- inside </script> -->"

tree-construction/tests7.dat

+36
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,42 @@
4646
| "X"
4747
| <body>
4848

49+
#data
50+
<!doctype html></head><base>X
51+
#errors
52+
(1,28): unexpected-start-tag-out-of-my-head
53+
#document
54+
| <!DOCTYPE html>
55+
| <html>
56+
| <head>
57+
| <base>
58+
| <body>
59+
| "X"
60+
61+
#data
62+
<!doctype html></head><basefont>X
63+
#errors
64+
(1,32): unexpected-start-tag-out-of-my-head
65+
#document
66+
| <!DOCTYPE html>
67+
| <html>
68+
| <head>
69+
| <basefont>
70+
| <body>
71+
| "X"
72+
73+
#data
74+
<!doctype html></head><bgsound>X
75+
#errors
76+
(1,31): unexpected-start-tag-out-of-my-head
77+
#document
78+
| <!DOCTYPE html>
79+
| <html>
80+
| <head>
81+
| <bgsound>
82+
| <body>
83+
| "X"
84+
4985
#data
5086
<!doctype html><table><meta></table>
5187
#errors

0 commit comments

Comments
 (0)