diff options
author | Markus Unterwaditzer <markus-honeypot@unterwaditzer.net> | 2021-11-24 20:44:08 +0100 |
---|---|---|
committer | Markus Unterwaditzer <markus-honeypot@unterwaditzer.net> | 2021-11-24 20:51:21 +0100 |
commit | 9909fc4580855a58a10eb84f0d143d1b3b3f464a (patch) | |
tree | 36941a6a714a10b9ce554ba249975108e6a17274 /tests/html5lib-tests/tree-construction/svg.dat |
hello world
Diffstat (limited to 'tests/html5lib-tests/tree-construction/svg.dat')
-rw-r--r-- | tests/html5lib-tests/tree-construction/svg.dat | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/tests/html5lib-tests/tree-construction/svg.dat b/tests/html5lib-tests/tree-construction/svg.dat new file mode 100644 index 0000000..a452e7a --- /dev/null +++ b/tests/html5lib-tests/tree-construction/svg.dat @@ -0,0 +1,104 @@ +#data +<svg><tr><td><title><tr> +#errors +(1:21) Unexpected <tr> tag +(1:25) Unexpected EOF +#document-fragment +td +#document +| <svg svg> +| <svg tr> +| <svg td> +| <svg title> + +#data +<svg><tr><td><title><tr> +#errors +(1:1) Unexpected <svg> tag +(1:21) Unexpected <tr> tag +(1:25) Unexpected EOF +#document-fragment +tr +#document +| <svg svg> +| <svg tr> +| <svg td> +| <svg title> + +#data +<svg><thead><title><tbody> +#errors +(1:1) Unexpected <svg> tag +(1:20) Unexpected <tbody> tag +(1:27) Unexpected EOF +#document-fragment +thead +#document +| <svg svg> +| <svg thead> +| <svg title> + +#data +<svg><tfoot><title><tbody> +#errors +(1:1) Unexpected <svg> tag +(1:20) Unexpected <tbody> tag +(1:27) Unexpected EOF +#document-fragment +tfoot +#document +| <svg svg> +| <svg tfoot> +| <svg title> + +#data +<svg><tbody><title><tfoot> +#errors +(1:1) Unexpected <svg> tag +(1:20) Unexpected <tfoot> tag +(1:27) Unexpected EOF +#document-fragment +tbody +#document +| <svg svg> +| <svg tbody> +| <svg title> + +#data +<svg><tbody><title></table> +#errors +(1:1) Unexpected <svg> tag +(1:20) Unexpected </table> tag +(1:28) Unexpected EOF +#document-fragment +tbody +#document +| <svg svg> +| <svg tbody> +| <svg title> + +#data +<svg><thead><title></table> +#errors +(1:1) Unexpected <svg> tag +(1:20) Unexpected </table> tag +(1:28) Unexpected EOF +#document-fragment +tbody +#document +| <svg svg> +| <svg thead> +| <svg title> + +#data +<svg><tfoot><title></table> +#errors +(1:1) Unexpected <svg> tag +(1:20) Unexpected </table> tag +(1:28) Unexpected EOF +#document-fragment +tbody +#document +| <svg svg> +| <svg tfoot> +| <svg title> |