chromium/content/test/data/accessibility/html/select-follows-focus-aria-selected-false.html

<!--
@BLINK-ALLOW:selectedFromFocus*
@MAC-ALLOW:AXSelected=*
@WAIT-FOR:Done
-->
<html>
<body>
  <div role="tablist">
    <button role="tab" id="tab1" aria-selected="false">tab1</button>
    <button role="tab">tab2</button>
  </div>
</body>

<script>
  // Setting focus on "tab1" with aria-selected="false" will NOT result in it
  // being selected.
  document.getElementById("tab1").focus();
  document.body.appendChild(document.createTextNode("Done"));
</script>

</html>