diff options
author | Adam Hodgen <ant1441@gmail.com> | 2021-07-10 22:17:24 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-11 14:14:01 +0200 |
commit | 47bfd366a8b015d5771c64e010d64d2105df7df2 (patch) | |
tree | 722755e5039661dfc0f09b33bf3a305ce9ebb6e3 /Userland/Libraries/LibWeb/Tests | |
parent | 3e46e8fea82f53a17e360d11f7e6101893ff7f71 (diff) | |
download | serenity-47bfd366a8b015d5771c64e010d64d2105df7df2.zip |
LibWeb: Fix syntax for Table test
The parser fixes this by inserting the <tr> tags, but for this test it's
better to have perfect syntax - we're not testing the parser here.
Diffstat (limited to 'Userland/Libraries/LibWeb/Tests')
-rw-r--r-- | Userland/Libraries/LibWeb/Tests/Pages/Table.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Tests/Pages/Table.html b/Userland/Libraries/LibWeb/Tests/Pages/Table.html index 8c32422b83..fe028b1bb0 100644 --- a/Userland/Libraries/LibWeb/Tests/Pages/Table.html +++ b/Userland/Libraries/LibWeb/Tests/Pages/Table.html @@ -8,7 +8,9 @@ A Caption </caption> <thead> - <th>Head Cell</th> + <tr> + <th>Head Cell</th> + </tr> </thead> <tbody> <tr> |