diff options
author | Andreas Kling <kling@serenityos.org> | 2020-11-22 13:37:07 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-11-22 13:48:43 +0100 |
commit | 00aac65af54a67ec6f67f53e49aa1514496b395c (patch) | |
tree | 9ad63de7e4b06f22abdc46a1d78293e1f368e91e /Base | |
parent | 1e9208154666ed19e91dbf729e6d06d2f7740ce9 (diff) | |
download | serenity-00aac65af54a67ec6f67f53e49aa1514496b395c.zip |
Base: Unbreak the "images" HTML test page
Diffstat (limited to 'Base')
-rw-r--r-- | Base/res/html/misc/images.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Base/res/html/misc/images.html b/Base/res/html/misc/images.html index 928169a9b1..b88e92727a 100644 --- a/Base/res/html/misc/images.html +++ b/Base/res/html/misc/images.html @@ -5,16 +5,16 @@ <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" /> + <img alt="serenity logo (squished)" src="file:///res/graphics/buggie.png" width="40" height="40" /> + <img alt="serenity logo (normal)" src="file:///res/graphics/buggie.png" width="64" height="64" /> + <img alt="serenity logo (stretched)" src="file:///res/graphics/buggie.png" width="100" height="100" /> + <img alt="serenity logo (unspecified size)" src="file:///res/graphics/buggie.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" /> + <img alt="invalid path (64x64)" src="file:///res/graphics/file-does-not-exist.png" width="64" height="64" /> + <img alt="invalid path (100x100)" src="file:///res/graphics/file-does-not-exist.png" width="100" height="100" /> + <img alt="invalid path (unspecified size)" src="file:///res/graphics/file-does-not-exist.png" /> + <img src="file:///res/graphics/file-does-not-exist.png" /> </center> </body> </html> |