What does this page log in a browser?
HTML
<button id="save">Save</button>
<div id="status">Idle</div>
<script>
const button = document.querySelector('#save');
const status = document.querySelector('#status');
console.log(`${button.tabIndex},${status.tabIndex},${button.type}`);
</script>