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:
Elisée Maurer 2020-03-26 07:37:12 +01:00 committed by GitHub
parent 68b04d5c78
commit d01b97b50a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
Notes: sideshowbarker 2024-07-19 08:07:30 +09:00
7 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
<!DOCTYPE>
<!DOCTYPE html>
<html>
<head>
<title>Canvas, timer, random and event demo</title>

View file

@ -1,4 +1,4 @@
<!DOCTYPE>
<!DOCTYPE html>
<html>
<head></head>
<body>

View file

@ -1,4 +1,4 @@
<!DOCTYPE>
<!DOCTYPE html>
<html>
<head><title>Form</title></head>
<body>

View file

@ -1,4 +1,4 @@
<!DOCTYPE>
<!DOCTYPE html>
<html>
<head>
</head>

View file

@ -1,4 +1,4 @@
<!DOCTYPE>
<!DOCTYPE html>
<html>
<head><title>WebServer start page!</title></head>
<body>

View file

@ -1,4 +1,4 @@
<!DOCTYPE>
<!DOCTYPE html>
<html>
<head><title>WebServer other page!</title></head>
<body>

View file

@ -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)) {