Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-12 | LibWeb: Do not handle mouse events on disabled checkboxes | redoste | |
2020-09-11 | LibWeb: Protect LayoutCheckBox against crashes after event dispatch | Andreas 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-11 | LibWeb: 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. |