Bastiaan van der Plaat
Bastiaan van der Plaat
This pr removes the `@resource_directory_url@` template variable and uses the new `resource://` scheme to get to the right icons. It also adds some code that when viewing a resource schemed...
The input color picker currently only sends an color value back on the picker close. This pr changes that so that the color picker can give a continues stream of...
Textarea didn't support placeholders so I have copied the system from the input element to it. I also implemented the textarea value, defaultValue, textLength properties. # Demo video https://github.com/SerenityOS/serenity/assets/19894029/01437925-7903-4333-8329-47a26677e591
This adds basic support for the input `valueAsDate` property for the date & time input types.
This pr adds input and textarea element minlength and maxlength. Hope you like it :)
This pr adds LibGUI menu minimum width support, this is used in the LibWeb select dropdown so that the dropdown is as wide as the select element. ## Screenshot ![Screenshot...
This pr implements the obsolete pre width attribute This commit is split of from #22944 because that merge request is to big and getting stale
This adds textarea readonly attribute support, it is mostly just a copy of the code already present in input. I also added two tests to check the working of input...
When I first created the Maps favorites panel I used the `JSONArrayModel` but this resulted in quite hacky ugly code. I have refactored the code now inspired by the `HexEditor/AnnotationsModel.h`....