mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:58:11 +00:00
Base: Replace <!DOCTYPE> with <!DOCTYPE html> in a few files (#1511)
<!DOCTYPE> by itself is not a valid document type declaration.
This commit is contained in:
parent
68b04d5c78
commit
d01b97b50a
7 changed files with 7 additions and 7 deletions
|
@ -57,7 +57,7 @@ void dump_tree(const Node& node)
|
|||
} else if (is<Text>(node)) {
|
||||
dbgprintf("\"%s\"\n", static_cast<const Text&>(node).data().characters());
|
||||
} else if (is<DocumentType>(node)) {
|
||||
dbgprintf("<!DOCTYPE>\n");
|
||||
dbgprintf("<!DOCTYPE html>\n");
|
||||
} else if (is<Comment>(node)) {
|
||||
dbgprintf("<!--%s-->\n", to<Comment>(node).data().characters());
|
||||
} else if (is<DocumentFragment>(node)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue