chromium/content/test/data/accessibility/event/tabindex-removed-on-plain-div.html

<!DOCTYPE html>
<html>
<body>
<div id="d" tabindex="-1"></div>
<script>
  function go() {
    document.querySelector('#d').removeAttribute('tabindex');
  }
</script>
</body>
</html>