Render Flow - Label association
Read <label>
→Create LABEL node
Check for 'for' attribute
Find input with matching id
Associate label with input
If no 'for', check for nested input
Associate label with nested input
Render label text
Render input element
Enable click on label to focus input
The browser reads the label element, finds the input it is associated with either by 'for' attribute or nesting, then links them so clicking the label focuses the input.