Files

30 lines
438 B
Plaintext

#data
<!doctype html><p>foo<main>bar<p>baz
#errors
36: End of file seen and there were open elements.
27: Unclosed element “main”.
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <p>
| "foo"
| <main>
| "bar"
| <p>
| "baz"
#data
<!doctype html><main><p>foo</main>bar
#errors
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <main>
| <p>
| "foo"
| "bar"