Performance: Title attribute
LOW IMPACT
The title attribute affects page load minimally but can impact user experience by providing additional information on hover, which may trigger browser tooltip rendering.
<button aria-label="Submit the form">Submit</button>
<button title="Click to submit the form">Submit</button>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Heavy use of title attributes on many elements | No extra DOM nodes | 0 reflows | Multiple paint triggers on hover | [!] OK |
| Use aria-label instead of title for accessibility | No extra DOM nodes | 0 reflows | No paint triggered by tooltip | [OK] Good |