diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-13 16:36:19 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 11:40:58 +0200 |
commit | 235d810c1b128a4f862289cb70fc31651a6f2068 (patch) | |
tree | 7a96a320a98cf4ce163f34f80eefe0aa5b1c1c88 /tests/span-tests | |
parent | 821f773bd263829e361c5d8063fc3e59695bbd6a (diff) |
test: split up span test
Diffstat (limited to 'tests/span-tests')
-rw-r--r-- | tests/span-tests/demo.html | 15 | ||||
-rw-r--r-- | tests/span-tests/demo.out | 29 |
2 files changed, 0 insertions, 44 deletions
diff --git a/tests/span-tests/demo.html b/tests/span-tests/demo.html deleted file mode 100644 index 07c305b..0000000 --- a/tests/span-tests/demo.html +++ /dev/null @@ -1,15 +0,0 @@ -this is a tag: <h1>test</h1> - -tags can have attributes: <div id = foobar> - -Attribute values can be quoted: <input name = 'age' type = "number"> - -But you cannot put attributes everywhere: </nope data=foobar> - -Please mind the gap: < test - -The pirate says &arrrrr; - -Does this open two pages? <a href=foo.html href=bar.html>click me</a> - -Do you start or do you end? </yes/> diff --git a/tests/span-tests/demo.out b/tests/span-tests/demo.out deleted file mode 100644 index 22513f7..0000000 --- a/tests/span-tests/demo.out +++ /dev/null @@ -1,29 +0,0 @@ -note: - ┌─ test.html:1:17 - │ - 1 │ this is a tag: <h1>test</h1> - │ ^^ ^^ end tag - │ │ - │ start tag - · - 5 │ Attribute values can be quoted: <input name = 'age' type = "number"> - │ ^^^^ ^^^ ^^^^ ^^^^^^ attr value - │ │ │ │ - │ │ │ attr name - │ │ attr value - │ attr name - 6 │ - 7 │ But you cannot put attributes everywhere: </nope data=foobar> - │ ^^^^ end-tag-with-attributes - 8 │ - 9 │ Please mind the gap: < test - │ ^ invalid-first-character-of-tag-name -10 │ -11 │ The pirate says &arrrrr; - │ ^ unknown-named-character-reference -12 │ -13 │ Does this open two pages? <a href=foo.html href=bar.html>click me</a> - │ ^^^^ duplicate-attribute -14 │ -15 │ Do you start or do you end? </yes/> - │ ^ end-tag-with-trailing-solidus |