diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-15 21:08:36 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-15 21:08:36 +0200 |
commit | f8a86b5164cc501d6d6aee18822075b46e5e5f01 (patch) | |
tree | a26e97d1d4e3e5e07b73a8b02c031237e155e45e /Base/home/anon | |
parent | 581d6b00c828cd6f5920bf7de5b63023d5b52436 (diff) | |
download | serenity-f8a86b5164cc501d6d6aee18822075b46e5e5f01.zip |
LibHTML: Basic element attribute parsing.
Diffstat (limited to 'Base/home/anon')
-rw-r--r-- | Base/home/anon/small.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Base/home/anon/small.html b/Base/home/anon/small.html index f44d46836e..eebdeadb19 100644 --- a/Base/home/anon/small.html +++ b/Base/home/anon/small.html @@ -1,6 +1,7 @@ <html> <head><title>Small test page</title></head> - <body> + <body bgcolor="#408080" text="#ffffff"> + <h1>Hello friends!</h1> <p>This is a <b>very small</b> test page :^)</p> </body> </html> |