diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-29 18:07:36 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-29 18:07:36 +0200 |
commit | 17c06d7c9a612bf8250604eaead31f3a3584d34d (patch) | |
tree | cd0707833c99bc81f1728d5501fc7ad02d902267 /Base | |
parent | 37a37accd41154691f82c9564dad6651bc0c07ec (diff) | |
download | serenity-17c06d7c9a612bf8250604eaead31f3a3584d34d.zip |
Base: Move HTML test pages into /home/anon/html
Also add a simple test page for inline style sheets.
Diffstat (limited to 'Base')
-rw-r--r-- | Base/home/anon/html/css.html | 24 | ||||
-rw-r--r-- | Base/home/anon/html/lorem.html (renamed from Base/home/anon/lorem.html) | 0 | ||||
-rw-r--r-- | Base/home/anon/html/small.html (renamed from Base/home/anon/small.html) | 0 |
3 files changed, 24 insertions, 0 deletions
diff --git a/Base/home/anon/html/css.html b/Base/home/anon/html/css.html new file mode 100644 index 0000000000..2655fbb181 --- /dev/null +++ b/Base/home/anon/html/css.html @@ -0,0 +1,24 @@ +<html> + <head> + <title>CSS test</title> + <style type="text/css"> + #foo { + background-color: #ff0000; + color: #00ffff; + } + #bar { + background-color: #00ff00; + color: #ff00ff; + } + #baz { + background-color: #0000ff; + color: #ffff00; + } + </style> + </head> + <body> + <div id="foo">This is foo</div> + <div id="bar">This is bar</div> + <div id="baz">This is baz</div> + </body> +</html> diff --git a/Base/home/anon/lorem.html b/Base/home/anon/html/lorem.html index cb8f3e26c8..cb8f3e26c8 100644 --- a/Base/home/anon/lorem.html +++ b/Base/home/anon/html/lorem.html diff --git a/Base/home/anon/small.html b/Base/home/anon/html/small.html index b3b4cd99b2..b3b4cd99b2 100644 --- a/Base/home/anon/small.html +++ b/Base/home/anon/html/small.html |