Consider how the accessibility tree is built from the DOM. An element has both `aria-hidden="true"` AND `tabindex="0"` and is a native <button>. What does a conforming accessibility-tree implementation expose to assistive tech, and why?
<button aria-hidden="true" tabindex="0">Save</button>