mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
Previously, click handling for labels was handled in layout and painting code. This change implements activation_behavior on HTMLLabelElement, which clicks and focuses the element.
7 lines
132 B
HTML
7 lines
132 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
label { display: inline; }
|
|
label div { display: inline-block; }
|
|
</style>
|
|
<label><div>Test</div></label>
|