1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 19:15:09 +00:00

LibWeb: Implement HTMLElement.click()

This doesn't send the correct type of click event, but it does send
something, so it's already somewhat useful. :^)
This commit is contained in:
Andreas Kling 2022-02-15 00:25:51 +01:00
parent 1347c5032b
commit e842e955e5
3 changed files with 28 additions and 1 deletions

View file

@ -389,4 +389,24 @@ void HTMLElement::focus()
// 5. Unmark the element as locked for focus.
m_locked_for_focus = false;
}
// https://html.spec.whatwg.org/multipage/interaction.html#dom-click
void HTMLElement::click()
{
// FIXME: 1. If this element is a form control that is disabled, then return.
// 2. If this element's click in progress flag is set, then return.
if (m_click_in_progress)
return;
// 3. Set this element's click in progress flag.
m_click_in_progress = true;
// FIXME: 4. Fire a synthetic pointer event named click at this element, with the not trusted flag set.
dispatch_event(DOM::Event::create("click"));
// 5. Unset this element's click in progress flag.
m_click_in_progress = false;
}
}