1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:57:35 +00:00

LibWeb: Add basic support for <input type=checkbox>

This is implemented entirely inside LibWeb, there is no GUI::CheckBox
widget instantiated, unlike other input types. All input types should
be moved to this new style of implementation.
This commit is contained in:
Andreas Kling 2020-09-11 18:17:39 +02:00
parent d6889ecf35
commit f2431adf47
7 changed files with 195 additions and 1 deletions

View file

@ -133,6 +133,7 @@ set(SOURCES
Layout/LayoutBox.cpp
Layout/LayoutBreak.cpp
Layout/LayoutCanvas.cpp
Layout/LayoutCheckBox.cpp
Layout/LayoutDocument.cpp
Layout/LayoutFrame.cpp
Layout/LayoutImage.cpp