html-to-markdown 2.24.6 → 2.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/ext/html-to-markdown-rb/native/Cargo.lock +3 -26
  4. data/ext/html-to-markdown-rb/native/Cargo.toml +1 -1
  5. data/lib/html_to_markdown/version.rb +1 -1
  6. data/rust-vendor/html-to-markdown-rs/Cargo.toml +0 -1
  7. data/rust-vendor/html-to-markdown-rs/src/converter/main_helpers.rs +1 -1
  8. data/rust-vendor/html-to-markdown-rs/src/lib.rs +1 -0
  9. data/rust-vendor/{markup5ever_rcdom/lib.rs → html-to-markdown-rs/src/rcdom.rs} +53 -91
  10. data/rust-vendor/png/.cargo-checksum.json +1 -1
  11. data/rust-vendor/png/.cargo_vcs_info.json +1 -1
  12. data/rust-vendor/png/CHANGES.md +44 -0
  13. data/rust-vendor/png/Cargo.lock +124 -171
  14. data/rust-vendor/png/Cargo.toml +1 -1
  15. data/rust-vendor/png/Cargo.toml.orig +1 -1
  16. data/rust-vendor/png/benches/expand_paletted.rs +5 -5
  17. data/rust-vendor/png/benches/unfilter.rs +3 -3
  18. data/rust-vendor/png/src/adam7.rs +17 -10
  19. data/rust-vendor/png/src/common.rs +8 -8
  20. data/rust-vendor/png/src/decoder/mod.rs +53 -20
  21. data/rust-vendor/png/src/decoder/stream.rs +263 -78
  22. data/rust-vendor/png/src/decoder/unfiltering_buffer.rs +210 -53
  23. data/rust-vendor/png/src/decoder/zlib.rs +130 -90
  24. data/rust-vendor/png/src/encoder.rs +4 -2
  25. data/rust-vendor/png/src/{filter.rs → filter/mod.rs} +100 -367
  26. data/rust-vendor/png/src/filter/optimization-notes.md +104 -0
  27. data/rust-vendor/png/src/filter/paeth.rs +398 -0
  28. data/rust-vendor/png/src/filter/simd.rs +308 -0
  29. data/rust-vendor/png/src/lib.rs +1 -0
  30. metadata +7 -177
  31. data/rust-vendor/markup5ever_rcdom/.cargo-checksum.json +0 -1
  32. data/rust-vendor/markup5ever_rcdom/.cargo_vcs_info.json +0 -7
  33. data/rust-vendor/markup5ever_rcdom/Cargo.lock +0 -658
  34. data/rust-vendor/markup5ever_rcdom/Cargo.toml +0 -109
  35. data/rust-vendor/markup5ever_rcdom/Cargo.toml.orig +0 -42
  36. data/rust-vendor/markup5ever_rcdom/LICENSE-APACHE +0 -201
  37. data/rust-vendor/markup5ever_rcdom/LICENSE-MIT +0 -25
  38. data/rust-vendor/markup5ever_rcdom/README.md +0 -7
  39. data/rust-vendor/markup5ever_rcdom/custom-html5lib-tokenizer-tests/regression.test +0 -69
  40. data/rust-vendor/markup5ever_rcdom/data/test/ignore +0 -1
  41. data/rust-vendor/markup5ever_rcdom/examples/hello_xml.rs +0 -39
  42. data/rust-vendor/markup5ever_rcdom/examples/html2html.rs +0 -51
  43. data/rust-vendor/markup5ever_rcdom/examples/print-rcdom.rs +0 -78
  44. data/rust-vendor/markup5ever_rcdom/examples/xml_tree_printer.rs +0 -67
  45. data/rust-vendor/markup5ever_rcdom/html5lib-tests/.gitattributes +0 -2
  46. data/rust-vendor/markup5ever_rcdom/html5lib-tests/.github/workflows/downstream.yml +0 -76
  47. data/rust-vendor/markup5ever_rcdom/html5lib-tests/.github/workflows/lint.yml +0 -25
  48. data/rust-vendor/markup5ever_rcdom/html5lib-tests/.gitignore +0 -79
  49. data/rust-vendor/markup5ever_rcdom/html5lib-tests/AUTHORS.rst +0 -34
  50. data/rust-vendor/markup5ever_rcdom/html5lib-tests/LICENSE +0 -21
  51. data/rust-vendor/markup5ever_rcdom/html5lib-tests/encoding/chardet/test_big5.txt +0 -51
  52. data/rust-vendor/markup5ever_rcdom/html5lib-tests/encoding/scripted/tests1.dat +0 -5
  53. data/rust-vendor/markup5ever_rcdom/html5lib-tests/encoding/test-yahoo-jp.dat +0 -10
  54. data/rust-vendor/markup5ever_rcdom/html5lib-tests/encoding/tests1.dat +0 -388
  55. data/rust-vendor/markup5ever_rcdom/html5lib-tests/encoding/tests2.dat +0 -115
  56. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint +0 -6
  57. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/__init__.py +0 -0
  58. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/__init__.py +0 -0
  59. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/LICENSE +0 -18
  60. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/__init__.py +0 -0
  61. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/lexer.py +0 -211
  62. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/lexer.pyi +0 -34
  63. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/parser.py +0 -872
  64. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/parser.pyi +0 -83
  65. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/py.typed +0 -0
  66. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/util.py +0 -72
  67. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/util.pyi +0 -7
  68. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/vendor.txt +0 -1
  69. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor-patches/funcparserlib.patch +0 -24
  70. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/lint.py +0 -280
  71. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/parser.py +0 -177
  72. data/rust-vendor/markup5ever_rcdom/html5lib-tests/pyproject.toml +0 -7
  73. data/rust-vendor/markup5ever_rcdom/html5lib-tests/serializer/core.test +0 -125
  74. data/rust-vendor/markup5ever_rcdom/html5lib-tests/serializer/injectmeta.test +0 -66
  75. data/rust-vendor/markup5ever_rcdom/html5lib-tests/serializer/optionaltags.test +0 -965
  76. data/rust-vendor/markup5ever_rcdom/html5lib-tests/serializer/options.test +0 -60
  77. data/rust-vendor/markup5ever_rcdom/html5lib-tests/serializer/whitespace.test +0 -51
  78. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/README.md +0 -107
  79. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/contentModelFlags.test +0 -93
  80. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/domjs.test +0 -335
  81. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/entities.test +0 -542
  82. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/escapeFlag.test +0 -36
  83. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/namedEntities.test +0 -42422
  84. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/numericEntities.test +0 -1677
  85. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/pendingSpecChanges.test +0 -9
  86. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/test1.test +0 -353
  87. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/test2.test +0 -275
  88. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/test3.test +0 -11233
  89. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/test4.test +0 -532
  90. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/unicodeChars.test +0 -1577
  91. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/unicodeCharsProblematic.test +0 -41
  92. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/xmlViolation.test +0 -20
  93. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/README.md +0 -108
  94. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/adoption01.dat +0 -354
  95. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/adoption02.dat +0 -39
  96. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/blocks.dat +0 -695
  97. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/comments01.dat +0 -217
  98. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/doctype01.dat +0 -474
  99. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/domjs-unsafe.dat +0 -0
  100. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/entities01.dat +0 -943
  101. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/entities02.dat +0 -309
  102. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/foreign-fragment.dat +0 -645
  103. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/html5test-com.dat +0 -301
  104. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/inbody01.dat +0 -54
  105. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/isindex.dat +0 -49
  106. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/main-element.dat +0 -46
  107. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/math.dat +0 -104
  108. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/menuitem-element.dat +0 -240
  109. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/namespace-sensitivity.dat +0 -22
  110. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/noscript01.dat +0 -237
  111. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/pending-spec-changes-plain-text-unsafe.dat +0 -0
  112. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/pending-spec-changes.dat +0 -46
  113. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/plain-text-unsafe.dat +0 -0
  114. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/quirks01.dat +0 -53
  115. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/ruby.dat +0 -302
  116. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/scriptdata01.dat +0 -372
  117. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/scripted/adoption01.dat +0 -16
  118. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/scripted/ark.dat +0 -27
  119. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/scripted/webkit01.dat +0 -30
  120. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/search-element.dat +0 -46
  121. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/svg.dat +0 -104
  122. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tables01.dat +0 -322
  123. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/template.dat +0 -1673
  124. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests1.dat +0 -1956
  125. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests10.dat +0 -849
  126. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests11.dat +0 -523
  127. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests12.dat +0 -62
  128. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests14.dat +0 -75
  129. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests15.dat +0 -216
  130. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests16.dat +0 -2602
  131. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests17.dat +0 -179
  132. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests18.dat +0 -558
  133. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests19.dat +0 -1398
  134. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests2.dat +0 -831
  135. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests20.dat +0 -842
  136. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests21.dat +0 -306
  137. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests22.dat +0 -190
  138. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests23.dat +0 -168
  139. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests24.dat +0 -79
  140. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests25.dat +0 -288
  141. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests26.dat +0 -453
  142. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests3.dat +0 -305
  143. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests4.dat +0 -74
  144. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests5.dat +0 -210
  145. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests6.dat +0 -663
  146. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests7.dat +0 -453
  147. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests8.dat +0 -165
  148. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests9.dat +0 -472
  149. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests_innerHTML_1.dat +0 -843
  150. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tricky01.dat +0 -336
  151. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/webkit01.dat +0 -785
  152. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/webkit02.dat +0 -554
  153. data/rust-vendor/markup5ever_rcdom/tests/foreach_html5lib_test/mod.rs +0 -41
  154. data/rust-vendor/markup5ever_rcdom/tests/html-driver.rs +0 -29
  155. data/rust-vendor/markup5ever_rcdom/tests/html-serializer.rs +0 -265
  156. data/rust-vendor/markup5ever_rcdom/tests/html-tokenizer.rs +0 -487
  157. data/rust-vendor/markup5ever_rcdom/tests/html-tree-builder.rs +0 -298
  158. data/rust-vendor/markup5ever_rcdom/tests/html-tree-sink.rs +0 -141
  159. data/rust-vendor/markup5ever_rcdom/tests/util/find_tests.rs +0 -34
  160. data/rust-vendor/markup5ever_rcdom/tests/util/runner.rs +0 -48
  161. data/rust-vendor/markup5ever_rcdom/tests/xml-driver.rs +0 -101
  162. data/rust-vendor/markup5ever_rcdom/tests/xml-tokenizer.rs +0 -374
  163. data/rust-vendor/markup5ever_rcdom/tests/xml-tree-builder.rs +0 -237
  164. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/AUTHORS.rst +0 -9
  165. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/LICENSE +0 -21
  166. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/README.md +0 -92
  167. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/comments.test +0 -274
  168. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/doctype.test +0 -3232
  169. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/entities.test +0 -283
  170. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/eof.test +0 -113
  171. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/namedEntities.test +0 -42210
  172. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/numericEntities.test +0 -1349
  173. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/test1.test +0 -162
  174. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/test2.test +0 -64
  175. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/unicodeChars.test +0 -1295
  176. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tree-construction/README.md +0 -104
  177. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tree-construction/namespace.dat +0 -119
  178. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tree-construction/test1.dat +0 -124
  179. data/rust-vendor/xml5ever/.cargo-checksum.json +0 -1
  180. data/rust-vendor/xml5ever/.cargo_vcs_info.json +0 -6
  181. data/rust-vendor/xml5ever/Cargo.lock +0 -752
  182. data/rust-vendor/xml5ever/Cargo.toml +0 -69
  183. data/rust-vendor/xml5ever/Cargo.toml.orig +0 -29
  184. data/rust-vendor/xml5ever/LICENSE-APACHE +0 -201
  185. data/rust-vendor/xml5ever/LICENSE-MIT +0 -25
  186. data/rust-vendor/xml5ever/README.md +0 -72
  187. data/rust-vendor/xml5ever/benches/xml5ever.rs +0 -77
  188. data/rust-vendor/xml5ever/data/bench/strong.xml +0 -1
  189. data/rust-vendor/xml5ever/examples/README.md +0 -223
  190. data/rust-vendor/xml5ever/examples/example.xml +0 -3
  191. data/rust-vendor/xml5ever/examples/simple_xml_tokenizer.rs +0 -81
  192. data/rust-vendor/xml5ever/examples/xml_tokenizer.rs +0 -115
  193. data/rust-vendor/xml5ever/src/driver.rs +0 -90
  194. data/rust-vendor/xml5ever/src/lib.rs +0 -47
  195. data/rust-vendor/xml5ever/src/macros.rs +0 -18
  196. data/rust-vendor/xml5ever/src/serialize/mod.rs +0 -216
  197. data/rust-vendor/xml5ever/src/tokenizer/char_ref/mod.rs +0 -456
  198. data/rust-vendor/xml5ever/src/tokenizer/interface.rs +0 -116
  199. data/rust-vendor/xml5ever/src/tokenizer/mod.rs +0 -1344
  200. data/rust-vendor/xml5ever/src/tokenizer/qname.rs +0 -84
  201. data/rust-vendor/xml5ever/src/tokenizer/states.rs +0 -167
  202. data/rust-vendor/xml5ever/src/tree_builder/mod.rs +0 -774
  203. data/rust-vendor/xml5ever/src/tree_builder/types.rs +0 -37
@@ -1,843 +0,0 @@
1
- #data
2
- <body><span>
3
- #errors
4
- (1,6): unexpected-start-tag
5
- (1,12): expected-closing-tag-but-got-eof
6
- #document-fragment
7
- body
8
- #document
9
- | <span>
10
-
11
- #data
12
- <span><body>
13
- #errors
14
- (1,12): unexpected-start-tag
15
- (1,12): expected-closing-tag-but-got-eof
16
- #document-fragment
17
- body
18
- #document
19
- | <span>
20
-
21
- #data
22
- <span><body>
23
- #errors
24
- (1,12): unexpected-start-tag
25
- (1,12): expected-closing-tag-but-got-eof
26
- #document-fragment
27
- div
28
- #document
29
- | <span>
30
-
31
- #data
32
- <body><span>
33
- #errors
34
- (1,12): expected-closing-tag-but-got-eof
35
- #document-fragment
36
- html
37
- #document
38
- | <head>
39
- | <body>
40
- | <span>
41
-
42
- #data
43
- <frameset><span>
44
- #errors
45
- (1,10): unexpected-start-tag
46
- (1,16): expected-closing-tag-but-got-eof
47
- #document-fragment
48
- body
49
- #document
50
- | <span>
51
-
52
- #data
53
- <span><frameset>
54
- #errors
55
- (1,16): unexpected-start-tag
56
- (1,16): expected-closing-tag-but-got-eof
57
- #document-fragment
58
- body
59
- #document
60
- | <span>
61
-
62
- #data
63
- <span><frameset>
64
- #errors
65
- (1,16): unexpected-start-tag
66
- (1,16): expected-closing-tag-but-got-eof
67
- #document-fragment
68
- div
69
- #document
70
- | <span>
71
-
72
- #data
73
- <frameset><span>
74
- #errors
75
- (1,16): unexpected-start-tag-in-frameset
76
- (1,16): eof-in-frameset
77
- #document-fragment
78
- html
79
- #document
80
- | <head>
81
- | <frameset>
82
-
83
- #data
84
- <table><tr>
85
- #errors
86
- (1,7): unexpected-start-tag
87
- #document-fragment
88
- table
89
- #document
90
- | <tbody>
91
- | <tr>
92
-
93
- #data
94
- </table><tr>
95
- #errors
96
- (1,8): unexpected-end-tag
97
- #document-fragment
98
- table
99
- #document
100
- | <tbody>
101
- | <tr>
102
-
103
- #data
104
- <a>
105
- #errors
106
- (1,3): unexpected-start-tag-implies-table-voodoo
107
- (1,3): eof-in-table
108
- #document-fragment
109
- table
110
- #document
111
- | <a>
112
-
113
- #data
114
- <a><caption>a
115
- #errors
116
- (1,3): unexpected-start-tag-implies-table-voodoo
117
- (1,13): expected-closing-tag-but-got-eof
118
- #document-fragment
119
- table
120
- #document
121
- | <a>
122
- | <caption>
123
- | "a"
124
-
125
- #data
126
- <a><colgroup><col>
127
- #errors
128
- (1,3): foster-parenting-start-token
129
- (1,18): expected-closing-tag-but-got-eof
130
- #document-fragment
131
- table
132
- #document
133
- | <a>
134
- | <colgroup>
135
- | <col>
136
-
137
- #data
138
- <a><tbody><tr>
139
- #errors
140
- (1,3): foster-parenting-start-tag
141
- #document-fragment
142
- table
143
- #document
144
- | <a>
145
- | <tbody>
146
- | <tr>
147
-
148
- #data
149
- <a><tfoot><tr>
150
- #errors
151
- (1,3): foster-parenting-start-tag
152
- #document-fragment
153
- table
154
- #document
155
- | <a>
156
- | <tfoot>
157
- | <tr>
158
-
159
- #data
160
- <a><thead><tr>
161
- #errors
162
- (1,3): foster-parenting-start-tag
163
- #document-fragment
164
- table
165
- #document
166
- | <a>
167
- | <thead>
168
- | <tr>
169
-
170
- #data
171
- <a><tr>
172
- #errors
173
- (1,3): foster-parenting-start-tag
174
- #document-fragment
175
- table
176
- #document
177
- | <a>
178
- | <tbody>
179
- | <tr>
180
-
181
- #data
182
- <a><th>
183
- #errors
184
- (1,3): unexpected-start-tag-implies-table-voodoo
185
- (1,7): unexpected-cell-in-table-body
186
- #document-fragment
187
- table
188
- #document
189
- | <a>
190
- | <tbody>
191
- | <tr>
192
- | <th>
193
-
194
- #data
195
- <a><td>
196
- #errors
197
- (1,3): unexpected-start-tag-implies-table-voodoo
198
- (1,7): unexpected-cell-in-table-body
199
- #document-fragment
200
- table
201
- #document
202
- | <a>
203
- | <tbody>
204
- | <tr>
205
- | <td>
206
-
207
- #data
208
- <table></table><tbody>
209
- #errors
210
- (1,22): unexpected-start-tag
211
- #document-fragment
212
- caption
213
- #document
214
- | <table>
215
-
216
- #data
217
- </table><span>
218
- #errors
219
- (1,8): unexpected-end-tag
220
- (1,14): expected-closing-tag-but-got-eof
221
- #document-fragment
222
- caption
223
- #document
224
- | <span>
225
-
226
- #data
227
- <span></table>
228
- #errors
229
- (1,14): unexpected-end-tag
230
- (1,14): expected-closing-tag-but-got-eof
231
- #document-fragment
232
- caption
233
- #document
234
- | <span>
235
-
236
- #data
237
- </caption><span>
238
- #errors
239
- (1,10): XXX-undefined-error
240
- (1,16): expected-closing-tag-but-got-eof
241
- #document-fragment
242
- caption
243
- #document
244
- | <span>
245
-
246
- #data
247
- <span></caption><span>
248
- #errors
249
- (1,16): XXX-undefined-error
250
- (1,22): expected-closing-tag-but-got-eof
251
- #document-fragment
252
- caption
253
- #document
254
- | <span>
255
- | <span>
256
-
257
- #data
258
- <span><caption><span>
259
- #errors
260
- (1,15): unexpected-start-tag
261
- (1,21): expected-closing-tag-but-got-eof
262
- #document-fragment
263
- caption
264
- #document
265
- | <span>
266
- | <span>
267
-
268
- #data
269
- <span><col><span>
270
- #errors
271
- (1,11): unexpected-start-tag
272
- (1,17): expected-closing-tag-but-got-eof
273
- #document-fragment
274
- caption
275
- #document
276
- | <span>
277
- | <span>
278
-
279
- #data
280
- <span><colgroup><span>
281
- #errors
282
- (1,16): unexpected-start-tag
283
- (1,22): expected-closing-tag-but-got-eof
284
- #document-fragment
285
- caption
286
- #document
287
- | <span>
288
- | <span>
289
-
290
- #data
291
- <span><html><span>
292
- #errors
293
- (1,12): non-html-root
294
- (1,18): expected-closing-tag-but-got-eof
295
- #document-fragment
296
- caption
297
- #document
298
- | <span>
299
- | <span>
300
-
301
- #data
302
- <span><tbody><span>
303
- #errors
304
- (1,13): unexpected-start-tag
305
- (1,19): expected-closing-tag-but-got-eof
306
- #document-fragment
307
- caption
308
- #document
309
- | <span>
310
- | <span>
311
-
312
- #data
313
- <span><td><span>
314
- #errors
315
- (1,10): unexpected-start-tag
316
- (1,16): expected-closing-tag-but-got-eof
317
- #document-fragment
318
- caption
319
- #document
320
- | <span>
321
- | <span>
322
-
323
- #data
324
- <span><tfoot><span>
325
- #errors
326
- (1,13): unexpected-start-tag
327
- (1,19): expected-closing-tag-but-got-eof
328
- #document-fragment
329
- caption
330
- #document
331
- | <span>
332
- | <span>
333
-
334
- #data
335
- <span><thead><span>
336
- #errors
337
- (1,13): unexpected-start-tag
338
- (1,19): expected-closing-tag-but-got-eof
339
- #document-fragment
340
- caption
341
- #document
342
- | <span>
343
- | <span>
344
-
345
- #data
346
- <span><th><span>
347
- #errors
348
- (1,10): unexpected-start-tag
349
- (1,16): expected-closing-tag-but-got-eof
350
- #document-fragment
351
- caption
352
- #document
353
- | <span>
354
- | <span>
355
-
356
- #data
357
- <span><tr><span>
358
- #errors
359
- (1,10): unexpected-start-tag
360
- (1,16): expected-closing-tag-but-got-eof
361
- #document-fragment
362
- caption
363
- #document
364
- | <span>
365
- | <span>
366
-
367
- #data
368
- <span></table><span>
369
- #errors
370
- (1,14): unexpected-end-tag
371
- (1,20): expected-closing-tag-but-got-eof
372
- #document-fragment
373
- caption
374
- #document
375
- | <span>
376
- | <span>
377
-
378
- #data
379
- </colgroup><col>
380
- #errors
381
- (1,11): XXX-undefined-error
382
- #document-fragment
383
- colgroup
384
- #document
385
- | <col>
386
-
387
- #data
388
- <a><col>
389
- #errors
390
- (1,3): XXX-undefined-error
391
- #document-fragment
392
- colgroup
393
- #document
394
- | <col>
395
-
396
- #data
397
- <caption><a>
398
- #errors
399
- (1,9): XXX-undefined-error
400
- (1,12): unexpected-start-tag-implies-table-voodoo
401
- (1,12): eof-in-table
402
- #document-fragment
403
- tbody
404
- #document
405
- | <a>
406
-
407
- #data
408
- <col><a>
409
- #errors
410
- (1,5): XXX-undefined-error
411
- (1,8): unexpected-start-tag-implies-table-voodoo
412
- (1,8): eof-in-table
413
- #document-fragment
414
- tbody
415
- #document
416
- | <a>
417
-
418
- #data
419
- <colgroup><a>
420
- #errors
421
- (1,10): XXX-undefined-error
422
- (1,13): unexpected-start-tag-implies-table-voodoo
423
- (1,13): eof-in-table
424
- #document-fragment
425
- tbody
426
- #document
427
- | <a>
428
-
429
- #data
430
- <tbody><a>
431
- #errors
432
- (1,7): XXX-undefined-error
433
- (1,10): unexpected-start-tag-implies-table-voodoo
434
- (1,10): eof-in-table
435
- #document-fragment
436
- tbody
437
- #document
438
- | <a>
439
-
440
- #data
441
- <tfoot><a>
442
- #errors
443
- (1,7): XXX-undefined-error
444
- (1,10): unexpected-start-tag-implies-table-voodoo
445
- (1,10): eof-in-table
446
- #document-fragment
447
- tbody
448
- #document
449
- | <a>
450
-
451
- #data
452
- <thead><a>
453
- #errors
454
- (1,7): XXX-undefined-error
455
- (1,10): unexpected-start-tag-implies-table-voodoo
456
- (1,10): eof-in-table
457
- #document-fragment
458
- tbody
459
- #document
460
- | <a>
461
-
462
- #data
463
- </table><a>
464
- #errors
465
- (1,8): XXX-undefined-error
466
- (1,11): unexpected-start-tag-implies-table-voodoo
467
- (1,11): eof-in-table
468
- #document-fragment
469
- tbody
470
- #document
471
- | <a>
472
-
473
- #data
474
- <a><tr>
475
- #errors
476
- (1,3): unexpected-start-tag-implies-table-voodoo
477
- #document-fragment
478
- tbody
479
- #document
480
- | <a>
481
- | <tr>
482
-
483
- #data
484
- <a><td>
485
- #errors
486
- (1,3): unexpected-start-tag-implies-table-voodoo
487
- (1,7): unexpected-cell-in-table-body
488
- #document-fragment
489
- tbody
490
- #document
491
- | <a>
492
- | <tr>
493
- | <td>
494
-
495
- #data
496
- <td><table><tbody><a><tr>
497
- #errors
498
- (1,4): unexpected-cell-in-table-body
499
- (1,21): unexpected-start-tag-implies-table-voodoo
500
- (1,25): eof-in-table
501
- #document-fragment
502
- tbody
503
- #document
504
- | <tr>
505
- | <td>
506
- | <a>
507
- | <table>
508
- | <tbody>
509
- | <tr>
510
-
511
- #data
512
- </tr><td>
513
- #errors
514
- (1,5): XXX-undefined-error
515
- #document-fragment
516
- tr
517
- #document
518
- | <td>
519
-
520
- #data
521
- <td><table><a><tr></tr><tr>
522
- #errors
523
- (1,14): unexpected-start-tag-implies-table-voodoo
524
- (1,27): eof-in-table
525
- #document-fragment
526
- tr
527
- #document
528
- | <td>
529
- | <a>
530
- | <table>
531
- | <tbody>
532
- | <tr>
533
- | <tr>
534
-
535
- #data
536
- <caption><td>
537
- #errors
538
- (1,9): XXX-undefined-error
539
- #document-fragment
540
- tr
541
- #document
542
- | <td>
543
-
544
- #data
545
- <col><td>
546
- #errors
547
- (1,5): XXX-undefined-error
548
- #document-fragment
549
- tr
550
- #document
551
- | <td>
552
-
553
- #data
554
- <colgroup><td>
555
- #errors
556
- (1,10): XXX-undefined-error
557
- #document-fragment
558
- tr
559
- #document
560
- | <td>
561
-
562
- #data
563
- <tbody><td>
564
- #errors
565
- (1,7): XXX-undefined-error
566
- #document-fragment
567
- tr
568
- #document
569
- | <td>
570
-
571
- #data
572
- <tfoot><td>
573
- #errors
574
- (1,7): XXX-undefined-error
575
- #document-fragment
576
- tr
577
- #document
578
- | <td>
579
-
580
- #data
581
- <thead><td>
582
- #errors
583
- (1,7): XXX-undefined-error
584
- #document-fragment
585
- tr
586
- #document
587
- | <td>
588
-
589
- #data
590
- <tr><td>
591
- #errors
592
- (1,4): XXX-undefined-error
593
- #document-fragment
594
- tr
595
- #document
596
- | <td>
597
-
598
- #data
599
- </table><td>
600
- #errors
601
- (1,8): XXX-undefined-error
602
- #document-fragment
603
- tr
604
- #document
605
- | <td>
606
-
607
- #data
608
- <td><table></table><td>
609
- #errors
610
- #document-fragment
611
- tr
612
- #document
613
- | <td>
614
- | <table>
615
- | <td>
616
-
617
- #data
618
- <caption><a>
619
- #errors
620
- (1,9): XXX-undefined-error
621
- (1,12): expected-closing-tag-but-got-eof
622
- #document-fragment
623
- td
624
- #document
625
- | <a>
626
-
627
- #data
628
- <col><a>
629
- #errors
630
- (1,5): XXX-undefined-error
631
- (1,8): expected-closing-tag-but-got-eof
632
- #document-fragment
633
- td
634
- #document
635
- | <a>
636
-
637
- #data
638
- <colgroup><a>
639
- #errors
640
- (1,10): XXX-undefined-error
641
- (1,13): expected-closing-tag-but-got-eof
642
- #document-fragment
643
- td
644
- #document
645
- | <a>
646
-
647
- #data
648
- <tbody><a>
649
- #errors
650
- (1,7): XXX-undefined-error
651
- (1,10): expected-closing-tag-but-got-eof
652
- #document-fragment
653
- td
654
- #document
655
- | <a>
656
-
657
- #data
658
- <tfoot><a>
659
- #errors
660
- (1,7): XXX-undefined-error
661
- (1,10): expected-closing-tag-but-got-eof
662
- #document-fragment
663
- td
664
- #document
665
- | <a>
666
-
667
- #data
668
- <th><a>
669
- #errors
670
- (1,4): XXX-undefined-error
671
- (1,7): expected-closing-tag-but-got-eof
672
- #document-fragment
673
- td
674
- #document
675
- | <a>
676
-
677
- #data
678
- <thead><a>
679
- #errors
680
- (1,7): XXX-undefined-error
681
- (1,10): expected-closing-tag-but-got-eof
682
- #document-fragment
683
- td
684
- #document
685
- | <a>
686
-
687
- #data
688
- <tr><a>
689
- #errors
690
- (1,4): XXX-undefined-error
691
- (1,7): expected-closing-tag-but-got-eof
692
- #document-fragment
693
- td
694
- #document
695
- | <a>
696
-
697
- #data
698
- </table><a>
699
- #errors
700
- (1,8): XXX-undefined-error
701
- (1,11): expected-closing-tag-but-got-eof
702
- #document-fragment
703
- td
704
- #document
705
- | <a>
706
-
707
- #data
708
- </tbody><a>
709
- #errors
710
- (1,8): XXX-undefined-error
711
- (1,11): expected-closing-tag-but-got-eof
712
- #document-fragment
713
- td
714
- #document
715
- | <a>
716
-
717
- #data
718
- </td><a>
719
- #errors
720
- (1,5): unexpected-end-tag
721
- (1,8): expected-closing-tag-but-got-eof
722
- #document-fragment
723
- td
724
- #document
725
- | <a>
726
-
727
- #data
728
- </tfoot><a>
729
- #errors
730
- (1,8): XXX-undefined-error
731
- (1,11): expected-closing-tag-but-got-eof
732
- #document-fragment
733
- td
734
- #document
735
- | <a>
736
-
737
- #data
738
- </thead><a>
739
- #errors
740
- (1,8): XXX-undefined-error
741
- (1,11): expected-closing-tag-but-got-eof
742
- #document-fragment
743
- td
744
- #document
745
- | <a>
746
-
747
- #data
748
- </th><a>
749
- #errors
750
- (1,5): unexpected-end-tag
751
- (1,8): expected-closing-tag-but-got-eof
752
- #document-fragment
753
- td
754
- #document
755
- | <a>
756
-
757
- #data
758
- </tr><a>
759
- #errors
760
- (1,5): XXX-undefined-error
761
- (1,8): expected-closing-tag-but-got-eof
762
- #document-fragment
763
- td
764
- #document
765
- | <a>
766
-
767
- #data
768
- <table><td><td>
769
- #errors
770
- (1,11): unexpected-cell-in-table-body
771
- (1,15): expected-closing-tag-but-got-eof
772
- #document-fragment
773
- td
774
- #document
775
- | <table>
776
- | <tbody>
777
- | <tr>
778
- | <td>
779
- | <td>
780
-
781
- #data
782
- </select><option>
783
- #errors
784
- (1,9): XXX-undefined-error
785
- #document-fragment
786
- select
787
- #document
788
- | <option>
789
-
790
- #data
791
- <input><option>
792
- #errors
793
- (1,7): unexpected-input-in-select
794
- #document-fragment
795
- select
796
- #document
797
- | <option>
798
-
799
- #data
800
- <keygen><option>
801
- #errors
802
- (1,8): unexpected-input-in-select
803
- #document-fragment
804
- select
805
- #document
806
- | <option>
807
-
808
- #data
809
- <textarea><option>
810
- #errors
811
- (1,10): unexpected-input-in-select
812
- #document-fragment
813
- select
814
- #document
815
- | <option>
816
-
817
- #data
818
- </html><!--abc-->
819
- #errors
820
- (1,7): unexpected-end-tag-after-body-innerhtml
821
- #document-fragment
822
- html
823
- #document
824
- | <head>
825
- | <body>
826
- | <!-- abc -->
827
-
828
- #data
829
- </frameset><frame>
830
- #errors
831
- (1,11): unexpected-frameset-in-frameset-innerhtml
832
- #document-fragment
833
- frameset
834
- #document
835
- | <frame>
836
-
837
- #data
838
- #errors
839
- #document-fragment
840
- html
841
- #document
842
- | <head>
843
- | <body>