123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- #data
- FOO<!-- BAR -->BAZ
- #errors
- (1,3): expected-doctype-but-got-chars
- #document
- | <html>
- | <head>
- | <body>
- | "FOO"
- | <!-- BAR -->
- | "BAZ"
- #data
- FOO<!-- BAR --!>BAZ
- #errors
- (1,3): expected-doctype-but-got-chars
- (1,15): unexpected-bang-after-double-dash-in-comment
- #document
- | <html>
- | <head>
- | <body>
- | "FOO"
- | <!-- BAR -->
- | "BAZ"
- #data
- FOO<!-- BAR -- >BAZ
- #errors
- (1,3): expected-doctype-but-got-chars
- (1,15): unexpected-char-in-comment
- (1,21): eof-in-comment
- #document
- | <html>
- | <head>
- | <body>
- | "FOO"
- | <!-- BAR -- >BAZ -->
- #data
- FOO<!-- BAR -- <QUX> -- MUX -->BAZ
- #errors
- (1,3): expected-doctype-but-got-chars
- (1,15): unexpected-char-in-comment
- (1,24): unexpected-char-in-comment
- #document
- | <html>
- | <head>
- | <body>
- | "FOO"
- | <!-- BAR -- <QUX> -- MUX -->
- | "BAZ"
- #data
- FOO<!-- BAR -- <QUX> -- MUX --!>BAZ
- #errors
- (1,3): expected-doctype-but-got-chars
- (1,15): unexpected-char-in-comment
- (1,24): unexpected-char-in-comment
- (1,31): unexpected-bang-after-double-dash-in-comment
- #document
- | <html>
- | <head>
- | <body>
- | "FOO"
- | <!-- BAR -- <QUX> -- MUX -->
- | "BAZ"
- #data
- FOO<!-- BAR -- <QUX> -- MUX -- >BAZ
- #errors
- (1,3): expected-doctype-but-got-chars
- (1,15): unexpected-char-in-comment
- (1,24): unexpected-char-in-comment
- (1,31): unexpected-char-in-comment
- (1,35): eof-in-comment
- #document
- | <html>
- | <head>
- | <body>
- | "FOO"
- | <!-- BAR -- <QUX> -- MUX -- >BAZ -->
- #data
- FOO<!---->BAZ
- #errors
- (1,3): expected-doctype-but-got-chars
- #document
- | <html>
- | <head>
- | <body>
- | "FOO"
- | <!-- -->
- | "BAZ"
- #data
- FOO<!--->BAZ
- #errors
- (1,3): expected-doctype-but-got-chars
- (1,9): incorrect-comment
- #document
- | <html>
- | <head>
- | <body>
- | "FOO"
- | <!-- -->
- | "BAZ"
- #data
- FOO<!-->BAZ
- #errors
- (1,3): expected-doctype-but-got-chars
- (1,8): incorrect-comment
- #document
- | <html>
- | <head>
- | <body>
- | "FOO"
- | <!-- -->
- | "BAZ"
- #data
- <?xml version="1.0">Hi
- #errors
- (1,1): expected-tag-name-but-got-question-mark
- (1,22): expected-doctype-but-got-chars
- #document
- | <!-- ?xml version="1.0" -->
- | <html>
- | <head>
- | <body>
- | "Hi"
- #data
- <?xml version="1.0">
- #errors
- (1,1): expected-tag-name-but-got-question-mark
- (1,20): expected-doctype-but-got-eof
- #document
- | <!-- ?xml version="1.0" -->
- | <html>
- | <head>
- | <body>
- #data
- <?xml version
- #errors
- (1,1): expected-tag-name-but-got-question-mark
- (1,13): expected-doctype-but-got-eof
- #document
- | <!-- ?xml version -->
- | <html>
- | <head>
- | <body>
- #data
- FOO<!----->BAZ
- #errors
- (1,3): expected-doctype-but-got-chars
- (1,10): unexpected-dash-after-double-dash-in-comment
- #document
- | <html>
- | <head>
- | <body>
- | "FOO"
- | <!-- - -->
- | "BAZ"
- #data
- <html><!-- comment --><title>Comment before head</title>
- #errors
- (1,6): expected-doctype-but-got-start-tag
- #document
- | <html>
- | <!-- comment -->
- | <head>
- | <title>
- | "Comment before head"
- | <body>
|