Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #556, make focus navigation work when shadow host's tabindex is -1 #557

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from

Commits on Aug 29, 2016

  1. Fix WICG#556, make focus navigation work when shadow host's tabindex …

    …is -1
    
    The Shadow DOM spec section 6.3 (sequential focus navigation)
    unintentionally excluded all shadow hosts with nagative tabindex in Step
    3.1.3. This was unexpected for shadow hosts with `delagatesFocus=false`
    shadow root.
    
    Before:
     - Exclude all shadow hosts with tabindex < 0
    
    After:
     - Allow shadow hosts with tabindex < 0, but only when
       `delegatesFocus=false`
     - In sorting by tabindex, treat such shadow hosts as `tabindex=0`
     - Exclude those shadow hosts in Step 4.
    Takayoshi Kochi committed Aug 29, 2016
    Configuration menu
    Copy the full SHA
    a5929ff View commit details
    Browse the repository at this point in the history