1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 02:48:11 +00:00

LibWeb: Add input number up down UI buttons

This commit is contained in:
Bastiaan van der Plaat 2023-12-09 08:26:50 +01:00 committed by Andreas Kling
parent 234d084876
commit f8509e2183
4 changed files with 83 additions and 31 deletions

View file

@ -1,4 +1,11 @@
<input id="foo">
<!DOCTYPE html><html><head><style>
* {
font: 20px 'SerenitySans';
}
input {
width: 200px;
}
</style></head><body><input id="foo">
<script>
let foo = document.getElementById("foo");
foo.value = "FAIL";