summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Layout/LayoutCheckBox.cpp
AgeCommit message (Collapse)Author
2020-09-12LibWeb: Do not handle mouse events on disabled checkboxesredoste
2020-09-11LibWeb: Protect LayoutCheckBox against crashes after event dispatchAndreas Kling
After dispatching a "change" event due to the checked state being modified, we may have been removed from the layout tree. Make LayoutCheckBox protect itself to prevent this from crashing. Also, add a little test page for checkboxes. :^)
2020-09-11LibWeb: Add basic support for <input type=checkbox>Andreas Kling
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.