diff options
author | Andreas Kling <kling@serenityos.org> | 2020-06-17 17:28:18 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-17 20:09:44 +0200 |
commit | de12cf6821679c900ced1c8164741bfefbde97b0 (patch) | |
tree | 990d7f303ee79c33881881b0e8c210e22b5848d2 /Base/res/html/misc/images.html | |
parent | 4720635aabc06e3ad24bae8a3b08afe6bdb00ae7 (diff) | |
download | serenity-de12cf6821679c900ced1c8164741bfefbde97b0.zip |
Base: Move all the HTML test content into /res/html/misc
Diffstat (limited to 'Base/res/html/misc/images.html')
-rw-r--r-- | Base/res/html/misc/images.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Base/res/html/misc/images.html b/Base/res/html/misc/images.html new file mode 100644 index 0000000000..928169a9b1 --- /dev/null +++ b/Base/res/html/misc/images.html @@ -0,0 +1,20 @@ +<html> +<head> +<title>Pretty pictures!</title> +</head> +<body> + <center> + <h1>Look, pictures!</h1> + <img alt="serenity logo (squished)" src="file:///res/icons/serenity.png" width="40" height="40" /> + <img alt="serenity logo (normal)" src="file:///res/icons/serenity.png" width="64" height="64" /> + <img alt="serenity logo (stretched)" src="file:///res/icons/serenity.png" width="100" height="100" /> + <img alt="serenity logo (unspecified size)" src="file:///res/icons/serenity.png" /> + + <h1>Look, not pictures!</h1> + <img alt="invalid path (64x64)" src="file:///res/icons/file-does-not-exist.png" width="64" height="64" /> + <img alt="invalid path (100x100)" src="file:///res/icons/file-does-not-exist.png" width="100" height="100" /> + <img alt="invalid path (unspecified size)" src="file:///res/icons/file-does-not-exist.png" /> + <img src="file:///res/icons/file-does-not-exist.png" /> + </center> +</body> +</html> |