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

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