Performance: Opening links in new tab
LOW IMPACT
This affects user interaction responsiveness and perceived page load speed when opening external content.
<a href="https://example.com" target="_blank" rel="noopener noreferrer">Visit Example</a>
<a href="https://example.com">Visit Example</a>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Link opens in same tab | Minimal | 0 | 0 | [!] OK but blocks interaction |
| Link opens in new tab with target="_blank" | Minimal | 0 | 0 | [OK] Keeps page responsive |