1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-04 05:37:36 +00:00
serenity/Tests/LibWeb/Layout/input/input-image.html
Timothy Flynn 3f3db34587 LibWeb: Support setting dimensions on input image buttons
Users are allowed to specify the height and width of an image button
directly in the HTML.
2024-02-21 19:52:59 +01:00

5 lines
263 B
HTML

<form>
<input type="image" src="120.png" alt="Image not found" width="48" height="48">
<input type="image" src="120.png" alt="Image not found" width="64" height="64">
<input type="image" src="120.png" alt="Image not found" width="128" height="256">
</form>