diff options
author | Elisée Maurer <elisee@sparklinlabs.com> | 2020-03-26 07:37:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-26 07:37:12 +0100 |
commit | d01b97b50a6efd61a3baa1220c828e77356c3354 (patch) | |
tree | efe61664dec06a73baa452befb5fcd1e98d5b2f6 /Base/home | |
parent | 68b04d5c78612ea03d1df0014c107340f817b6d7 (diff) | |
download | serenity-d01b97b50a6efd61a3baa1220c828e77356c3354.zip |
Base: Replace <!DOCTYPE> with <!DOCTYPE html> in a few files (#1511)
<!DOCTYPE> by itself is not a valid document type declaration.
Diffstat (limited to 'Base/home')
-rw-r--r-- | Base/home/anon/www/demo.html | 2 | ||||
-rw-r--r-- | Base/home/anon/www/dom.html | 2 | ||||
-rw-r--r-- | Base/home/anon/www/form.html | 2 | ||||
-rw-r--r-- | Base/home/anon/www/innerHTML.html | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Base/home/anon/www/demo.html b/Base/home/anon/www/demo.html index 7c4c33b7e5..8dce42375b 100644 --- a/Base/home/anon/www/demo.html +++ b/Base/home/anon/www/demo.html @@ -1,4 +1,4 @@ -<!DOCTYPE> +<!DOCTYPE html> <html> <head> <title>Canvas, timer, random and event demo</title> diff --git a/Base/home/anon/www/dom.html b/Base/home/anon/www/dom.html index 05fab7cbb9..9425b10c8b 100644 --- a/Base/home/anon/www/dom.html +++ b/Base/home/anon/www/dom.html @@ -1,4 +1,4 @@ -<!DOCTYPE> +<!DOCTYPE html> <html> <head></head> <body> diff --git a/Base/home/anon/www/form.html b/Base/home/anon/www/form.html index 3df9bed419..8ca4c379bf 100644 --- a/Base/home/anon/www/form.html +++ b/Base/home/anon/www/form.html @@ -1,4 +1,4 @@ -<!DOCTYPE> +<!DOCTYPE html> <html> <head><title>Form</title></head> <body> diff --git a/Base/home/anon/www/innerHTML.html b/Base/home/anon/www/innerHTML.html index 9bd382d497..66832a03e5 100644 --- a/Base/home/anon/www/innerHTML.html +++ b/Base/home/anon/www/innerHTML.html @@ -1,4 +1,4 @@ -<!DOCTYPE> +<!DOCTYPE html> <html> <head> </head> |