Overview
Audit the entire app's tab order to ensure it follows the logical reading order of the UI. Tab should move through: Upload → Preset → Framing → Trim → Rotate → Audio → Quality → Export.
How to Test
- Open the app
- Press Tab repeatedly and note the order elements receive focus
- Compare against expected logical order
Fix Approach
Use natural DOM order for focus (no tabIndex > 0). Rearrange DOM order if visual layout differs from logical order using CSS, not DOM reordering.
Acceptance Criteria
Overview
Audit the entire app's tab order to ensure it follows the logical reading order of the UI. Tab should move through: Upload → Preset → Framing → Trim → Rotate → Audio → Quality → Export.
How to Test
Fix Approach
Use natural DOM order for focus (no
tabIndex > 0). Rearrange DOM order if visual layout differs from logical order using CSS, not DOM reordering.Acceptance Criteria