Skip to content

Commit

Permalink
Update click-focus-delegatesFocus-tabindex-varies.html
Browse files Browse the repository at this point in the history
  • Loading branch information
rakina authored Oct 11, 2019
1 parent a1a7eeb commit a8a89f2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
setTabIndex([aboveSlot], 2);
setTabIndex([slot, slotted], 1);
await test_driver.click(host);
assert_equals(shadowRoot.activeElement, null);
assert_equals(document.activeElement, aboveSlot);
assert_equals(shadowRoot.activeElement, aboveSlot);
assert_equals(document.activeElement, host);
}, "click on host with delegatesFocus, #aboveSlot tabindex = 2, #slot and #slotted tabindex = 1");

</script>

0 comments on commit a8a89f2

Please sign in to comment.