diff --git a/spec/shadow/index.html b/spec/shadow/index.html index d3bf9eca..934d4990 100644 --- a/spec/shadow/index.html +++ b/spec/shadow/index.html @@ -1268,24 +1268,11 @@

Sequential Focus Navigation

Active Element

-

To maintain encapsulation, the value of the Document object's focus API property activeElement must be adjusted. To prevent loss of information when adjusting this value, each shadow root must also have an activeElement property to store the value of the focused element in the shadow tree.

-

- The active element adjustment algorithm must be used to determine the value of activeElement property, and it must be equivalent to processing the following steps: + DocumentOrShadowRoot object's activeElement must be the result of + the retargeting algorithm with the context object and the focused element as input, + if the result and the context object are in the same tree. Otherwise, null.

- -
-
-
Input
-
ROOT, either a document or a shadow root
-
ELEMENT, the focused element
-
Output
-
ADJUSTED, an adjusted activeElement property of ROOT.
-
-
    -
  1. Let ADJUSTED be the result of the retargeting algorithm with ROOT and ELEMENT as input
  2. -
-