This specification is rather long. To make it easier to read and focus on a particular area, a few checkboxes are provided below. Checking them hides part of the specification. This is only meant as a reading aid, the specification remains the full document.
1. Introduction
This section is not normative.
Historically, most browsers have not offered features to let users move the focus directionally. Some, such as TV browsers, have enabled users to move the focus using the arrow keys out of necessity, since no other input mechanism is available on a typical TV remote control.
Others, have enabled different key combinations to control spatial navigation,
such as pressing the Shift
key together with arrow keys.
This ability to move around the page directionally is called spatial navigation.
Spatial navigation can be useful for a web page built using a grid-like layout,
or other predominantly non linear layouts.
The figure below represents a photo gallery arranged in a grid layout.
If the user presses the Tab
key to move focus,
they need to press the key many times to reach the desired element.
Also, the grid layout may arrange the layout of elements independently of their source order.
Therefore sequential navigation using the Tab
key makes focus navigation unpredictable.
In contrast, moves the focus among focusable elements
depending on their position
allowing it to address problems encountered with sequential navigation.
While arrow keys are naturally suited to control spatial navigation, no previous specification describes how that should work, or how it may be controlled. This specification introduces a processing model for spatial navigation, as well as APIs enabling authors to control and override how spatial navigation works.
Note: Some aspects of this specification, such as the JavaScript Events and APIs could also be extended to sequential navigation, in order to make sure that keyboard navigation in general has a consistent and well defined model.
Note: As a general principle, keyboard navigation, and spatial navigation in particular, should be possible to use and control without JavaScript, and declarative solutions are therefore preferred. Since spatial navigation depends on layout, that means CSS is typically the right mechanism to define spatial navigation related controls. However, in the spirit of the Extensible Web Manifesto [EXTENSIBLE], we feel it is important to provide the right JavaScript primitives to let authors experiment and explore the problem space. More declarative features may be added later, based on feedback and experience acquired through such JavaScript usage.
Note: A few features are marked at-risk. The editors of this specification believe they represent an important part of the user or author experience of the features defined in the specification. At the same time, the core functionality of this specification can be implemented without implementing these so it seems possible that implementors may choose to down-prioritize them to reduce the scope of a first implementation. While it is hoped that these features will be implemented as well, they are marked at-risk in recognition that they might not be at first.
2. Module interaction
This document depends on the Infra Standard [infra].
The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" are to be interpreted as described in RFC 2119. [RFC2119]
3. Overview
This section is not normative.
Using a UA-defined mechanism
(typically arrow keys, possibly in combination with modifier keys like Shift
or Control
),
the user may ask the User Agent to navigate in a particular direction.
This will either
move the focus from its current location to a new focusable item in the direction requested,
or scroll if there is no appropriate item.
More specifically, the User Agent will first search for visible and focusable items in the direction indicated within the current spatial navigation container (by default the root element, scrollable elements, and iframes, but other elements can be made into spatial navigation containers using the spatial-navigation-contain property).
If it finds any, it will pick the best one for that direction, and move the focus there.
If it does not, it will scroll the spatial navigation container in the requested direction instead of moving focus. Doing so may uncover focusable elements which would then be eligible targets to move the focus to next time spatial navigation in the same direction is requested.
If the spatial navigation container cannot be scrolled, either because it is not a scrollable element or because it is already scrolled to the maximum in that direction, the User Agent will select the next up the ancestry chain, and recursively repeat the above process until it finds some element to focus or scroll, or reaches the root element.
Note: As a consequence of this processing model, the elements that are reachable by sequential navigation and by spatial navigation are almost the same. Elements that are currently outside of the viewport of a scrollable element can only be reached by spatial navigation once they have been scrolled into view. Therefore, elements that cannot be scrolled into view (for example because they are placed at a negative offset) cannot be reached by spatial navigation.
preventDefault()
),
and if desired to provide an alternate action,
such as using the focus()
method on a different
element of the author’s choosing.
To help authors write such alternate actions, and as part of exposing underlying platform primitives as per the Extensible Web principles, this specification also defines JavaScript APIs that expose key constructs of the underlying model.
See §5 JavaScript API for details about the JavaScript API, §6.2 Navigation Event Types for details about the various events, and §9 Controlling spatial navigation through declarative means for details about the CSS properties.
On the left of figure 2, "Box 2" is focused.
Pressing the ArrowDown
key moves the focus to
"Box 3" without scrolling because "Box 3" is visible in the scrollport of the spatial navigation container.
On the first of figure 3, under "Box 3", there isn’t any visible element in the scrollport.
Therefore, the effect of pressing the ArrowDown
is to scroll down, as shown in the second.
The next press of the ArrowDown
key makes "Box 4" come into the scrollport,
and the focus will move to it when there is additional pressing the ArrowDown
, as the fourth.
This example uses the markup as follows:
#scroller { width : 700 px ; height : 700 px ; overflow-x : hidden; overflow-y : auto; } .box { width : 150 px ; height : 110 px ; background-color : blue; } .box:focus { background-color : red; }
< div id = "scroller" > < div class = "box" tabindex = "0" > Box 1</ div > < div class = "box" tabindex = "0" > Box 2</ div > < div class = "box" tabindex = "0" > Box 3</ div > < div class = "box" tabindex = "0" > Box 4</ div > </ div >
4. Triggering Spatial Navigation
When the user triggers spatial navigation in a given direction, the User Agent must run the spatial navigation steps in that direction.
This specification does not define what UI mechanism User Agents should offer to users to trigger spatial navigation. This intentionally left for User Agents to decide.
Although it is possible for User Agents to implement the processing model and APIs defined by the specification without giving any direct means to the user to trigger spatial navigation themselves, this specification recommends not to do so: User Agents should offer a means for users to trigger spatial navigation directly, without having to use the APIs.
Note: Conversely, authors should assume that spatial navigation may be triggered by the User Agent in response to user actions even if the author has not invoked any of the APIs.
Regardless of the actual mechanism chosen to trigger spatial navigation, the following requirements apply:
-
If the mechanism the user must use to trigger spatial navigation would normally fire a
UIEvent
, the event must be fired prior to running the spatial navigation steps and these steps must not be run if that event’s canceled flag gets set.Gaming devices may trigger spatial navigation based on pressing the D-pad. This would result in firing a keydown event with the key set to one ofArrowDown
,ArrowLeft
,ArrowRight
, orArrowUp
, followed if not canceled by running the spatial navigation steps, including firing the relevantNavigationEvent
s.A User Agent on a desktop computer that triggers spatial navigation using the arrow keys of the keyboard would follow the same sequence.
-
If the mechanism the user must use to trigger spatial navigation would trigger other actions in some contexts, the User Agent should in these contexts give priority to these other actions and execute them instead of spatial navigation. It must not trigger both.
In a User Agent that triggers spatial navigation using the arrow keys without modifier keys, and uses these same arrow keys to move the text insertion caret when an editable element is focused, the arrow keys should by default to moving the caret. Spatial navigation would only be triggered by the arrow keys when the focused element is not editable, or when it is editable but the caret cannot move any further in the requested direction.An exception is made for scrolling: since spatial navigation itself handles scrolling (in addition to moving the focus) User Agents should not offer the same mechanism to trigger both spatial navigation and a scrolling behavior separate from spatial navigation. User Agents may however, offer a way for the user to switch between different modes, or offer both based on different UI mechanism.
A User Agent may have a setting to let the user choose between using the arrow keys without modifier keys for spatial navigation or for scrolling. Another one may offer scrolling on arrow keys without modifiers, and spatial navigation on arrow keys when pressed together with theShift
key, or on theW
A
S
D
keys. Offering only spatial navigation or only scrolling as responses to pressing arrow keys would also be possibilities.
5. JavaScript API
5.1. Triggering Navigation Programmatically
The navigate()
method enables the author to trigger spatial navigation programmatically,
as if the user had done so manually
(for instance, by pressing the arrow keys in a browser where that is the way to trigger spatial navigation).
Note: As this triggers the same processing model as a manual navigation, all the same results should be expected: the same chain of events will be fired and the same element will be scrolled or focused.
Note: Authors can use this to trigger spatial navigation based on a different UI mechanism than the one assigned by the User Agent, such as mapping to different keys, or triggering spatial navigation from a clickable on-screen directional pad, or in reaction to other events than UI ones. It could also be used when an author wants to interrupt navigation to do some asynchronous operation (e.g. load more content in an infinite scroller) then resume the navigation where they cancelled.
Note: This API is also useful for testing purposes, as there is no other way to trigger spatial navigation that does not depend on vendor specific UI conventions.
enum {
SpatialNavigationDirection ,
"up" ,
"down" ,
"left" , };
"right" partial interface Window {void navigate (SpatialNavigationDirection ); };
dir
navigate(dir)
method is called,
the User Agent must run the following step:
-
If dir is
"up"
,"down"
,"left"
, or"right"
, run the spatial navigation steps in direction dir.
The name of this API is under discussion <https://github.com/w3c/csswg-drafts/issues/3387>
5.2. Low level APIs
Note: These APIs are designed to be low level constructs following the processing model closely. As such, they should be easy to use by authors who want to extend or override the way spatial navigation works.
enum {
FocusableAreaSearchMode ,
"visible" };
"all" dictionary {
FocusableAreasOption FocusableAreaSearchMode ; };
mode dictionary {
SpatialNavigationSearchOptions required SpatialNavigationDirection ;
dir sequence <Node >?;
candidates Node ?; };
container partial interface Element {Node getSpatialNavigationContainer ();sequence <Node >focusableAreas (optional FocusableAreasOption );
option Node ?spatialNavigationSearch (SpatialNavigationSearchOptions ); };
options
Note: The way the direction is expressed allows us to expand to more than 4-way navigation later of if this is found necessary. More directional keywords or a numerical angle could be added.
Note: the focusableAreas()
and getSpatialNavigationContainer()
methods are at-risk.
When these methods are called, the User Agent must run the steps described below:
getSpatialNavigationContainer()
-
-
Return the element if it is a spatial navigation container, or the nearest ancestor of the element that is a , or the document if the nearest is the viewport.
-
focusableAreas(option)
-
-
Let visibleOnly be
false
if option is present and its value is equal toall
, ortrue
otherwise. -
Let areas be the result of finding focusable areas within the element with visibleOnly as argument.
-
Let anchors be a clone of areas, with every focusable area which is not itself a Node replaced with its DOM anchor.
-
Return anchors
-
focusableAreas()
.
If the method finds a spatial navigation container, it recursively finds focusable areas inside it.
However, as the mode
attribute of this method is set to visible
,
the focusable element which isn’t inside the scrollport is excluded from the result.
< body >
< button ></ button >
< div style = "width:300px; height:200px; overflow-x: scroll;" >
< button style = "left:25px;" ></ button >
< button style = "left:150px;" ></ button >
< button style = "left:350px;" ></ button >
</ div >
</ body >
const focusableAreas = document. body. focusableAreas({ mode: 'visible' });
focusableAreas && focusableAreas. forEach( focusable => {
focusable. style. outline = '5px solid red' ;
});
The figure below is the result of this code.
spatialNavigationSearch(options)
-
-
Let direction be the value of
dir
attribute of options. -
-
If the value of
candidates
attribute of options is notnull
, then let areas be the that value -
else,
-
-
If the value of
container
attribute of options is notnull
, let container be that value -
else, let container be the element’s nearest spatial navigation container ancestor.
-
-
Let areas be the result of finding focusable areas within container.
-
-
-
Return the result of selecting the best candidate within areas in direction direction from the element.
-
Note: When neither a container nor a list of candidates is provided,
this only searches through the visible focusable areas of the nearest spatial navigation container ancestor. If there isn’t any, this does not climb further up the ancestry chain,
and the result will be null
.
document. addEventListener( 'navbeforefocus' , function ( e) {
e. preventDefault();
let target = e. relatedTarget;
while ( target. isSameNode( target. getSpatialNavigationContainer())) {
const areas = target. focusableAreas();
if ( areas. length === 0 ) { break ; }
target = target. spatialNavigationSearch({
dir: e. dir,
candidates: areas
});
}
target. focus();
});
However, the focus can still be moved outside by sequential navigation,
mouse interaction,
or programmatic calls to focus()
…
document. addEventListener( 'navnotarget' , function ( e) {
e. preventDefault();
const container = e. relatedTarget;
const areas = container. focusableAreas({ mode: 'all' });
if ( areas. length === 0 ) {
switch ( e. dir) {
case 'down' :
container. scrollTop = 0 ;
break ;
case 'up' :
container. scrollTop = container. scrollHeight;
break ;
case 'right' :
container. scrollLeft = 0 ;
break ;
case 'left' :
container. scrollLeft = container. scrollWidth;
break ;
}
} else {
const target = container. spatialNavigationSearch({
dir: e. dir,
candidates: areas
});
target. focus();
}
});
6. Navigation Events
6.1. Interface NavigationEvent
The NavigationEvent
interface provides specific contextual information associated with spatial navigation.
To create an instance of the NavigationEvent
interface, use the NavigationEvent
constructor,
passing an optional NavigationEventInit
dictionary.
[Exposed =Window ,(
Constructor DOMString ,
type optional NavigationEventInit )]
eventInitDict interface :
NavigationEvent UIEvent {readonly attribute SpatialNavigationDirection ;
dir readonly attribute EventTarget ?; };
relatedTarget dictionary :
NavigationEventInit UIEventInit {SpatialNavigationDirection ;
dir EventTarget ?=
relatedTarget null ; };
6.2. Navigation Event Types
This section and its subsections are not normative.
The Navigation event types are summarized below. For full normative details, see §8 Processing Model.
6.2.1. navbeforefocus
The navbeforefocus event occurs before spatial navigation changes the focus.
Type | navbeforefocus
|
---|---|
Interface | NavigationEvent
|
Bubbles | Yes |
Cancelable | Yes |
Attributes of the event |
|
ArrowRight
key.
For the sake of keeping the description simple,
this example assumes a User Agent where spatial navigation is triggered using arrow keys.
Event type | KeyboardEvent .key
| Notes | |
---|---|---|---|
1 | keydown | ArrowRight
| MUST be a key which can activate spatial navigation, such as the arrow keys, or spatial navigation is not activated. |
2 | navbeforefocus | Sent if the candidates for spatial navigation is not null ,
or this is not generated.
| |
3 | focusin | Sent before the target element receives focus. | |
4 | focus | Sent after the target element receives focus. |
6.2.2. navnotarget
The navnotarget event occurs before going up the tree to search candidates in the nearest ancestor spatial navigation container when spatial navigation has failed to find any candidate within the current , and in cases where the is scrollable, when it cannot be scrolled further.
Type | navnotarget
|
---|---|
Interface | NavigationEvent
|
Bubbles | Yes |
Cancelable | Yes |
Attributes of the event |
|
ArrowDown
key in the situation like the following figure.
For the sake of keeping the description simple,
this example assumes a User Agent where spatial navigation is triggered using arrow keys.
Event type | Event target | relatedTarget
| Notes | |
---|---|---|---|---|
1 | keydown | #box2
| N/A | MUST be a key which can activate spatial navigation, such as the arrow keys, otherwise spatial navigation is not triggered. |
2 | navnotarget | #box2
| #scrollContainer
| Sent if #scrollContainer doesn’t contain any candidate and
cannot be scrolled,
otherwise this would not be generated.
|
3 | navbeforefocus | #box2
| #box3
| Sent if the candidates in #container is not null ,
otherwise this would not be fired.
|
4 | focusin | #box3
| N/A | Sent before the target element receives focus. |
5 | focus | #box3
| N/A | Sent after the target element receives focus. |
The result of this example is the figure as follows:
This example uses the markup as follows:
#container { width : 900 px ; height : 1400 px ; } #scrollContainer { width : 700 px ; height : 700 px ; overflow-x : hidden; overflow-y : auto; } .item { width : 150 px ; height : 110 px ; background-color : blue; } .item:focus { background-color : red; }
< div id = "container" > < div id = "scrollContainer" > < div id = "box1" class = "item" tabindex = "0" > Box 1</ div > < div id = "box2" class = "item" tabindex = "0" > Box 2</ div > </ div > < div id = "box3" class = "item" tabindex = "0" > Box 3</ div > </ div >
7. The navigation-override policy-controlled feature
The navigation-override policy-controlled feature controls the availability of mechanisms that enables page authors to take control over the behavior of spatial navigation, or to cancel it outright.
-
The feature name is "
navigation-override
" -
The default allowlist for navigation-override is "
self
"
As defined in further details in §8.2 Navigation, if navigation-override is disabled in a document, the navigation events (see §6 Navigation Events) will not be fired.
Note: This is to prevent a hostile iframe from using these events in order to highjack the focus. We recognize that there exist other mechanisms predating spatial navigation that malicious authors could use to interfere with the user’s ability to control where the focus goes. Despite that, it seems worthwhile to attempt not to increase this attack surface, although it is possible that such attacks are already sufficiently easy to perform that this is a lost cause. Further feedback on this topic, based on experience with implementation or with mitigating such attacks, is very welcome.
8. Processing Model
This section defines the corresponding normative behavior and aims for as much detail as necessary to fully define the behavior.
The following currently does not account for the proposed overscroll-behavior specification. <https://github.com/w3c/csswg-drafts/issues/3376>
8.1. Groupings of elements
While the general model for spatial navigation is to work from the layout of the document and the relative position of focusable elements, the User Agent is required to prioritize finding elements from a local logical grouping, only looking for focusable elements outside of the grouping if a suitable one cannot be found inside it (see §8.2 Navigation for details).
Such groupings are called spatial navigation containers.
By default, spatial navigation containers are established by:
-
The viewport of a browsing context (not limited to the top-level browsing context)
8.2. Navigation
There can be a spatial navigation starting point. It is initially unset. The user agent may set it when the user indicates that it should be moved.
Note: For example, the user agent could set it to the position of the user’s click if the user clicks on the document contents, and unset when the focus is moved (by spatial navigation or any other means).
If the User Agent sets both a spatial navigation starting point and a sequential focus navigation starting point, they must not be set differently.
-
Let searchOrigin be the DOM anchor of the currently focused area of a top-level browsing context.
-
If the spatial navigation starting point is not
null
and it is inside searchOrigin then set searchOrigin to the . -
If eventTarget is the Document or the document element, set eventTarget be the body element if it is not
null
or to the document element otherwise. -
-
If searchOrigin is scroll container and the computed value of the spatial-navigation-action property on searchOrigin is scroll and searchOrigin can be manually scrolled, then directionally scroll the element searchOrigin and return.
-
Else, if searchOrigin is either a scroll container or the document
-
Let candidates be the result of finding focusable areas within searchOrigin with the argument set to
false
if computed value of the spatial-navigation-action property on searchOrigin is focus or totrue
otherwise. -
-
If candidates contains at least 1 item:
-
Let bestCandidate be the result of selecting the best candidate within candidates in direction starting from searchOrigin
-
If navigation-override is enabled in the node document of eventTarget for the origin of the active document of the top-level browsing context, then fire an event named navbeforefocus at eventTarget using
NavigationEvent
with:-
dir
set to direction -
relatedTarget
set to bestCandidate -
the
bubbles
andcancelable
attributes set totrue
and return if the result is
false
. -
-
Run the focusing steps for bestCandidate and return
-
-
Else if the computed value of the spatial-navigation-action property on eventTarget is not focus and eventTarget can be manually scrolled, then directionally scroll the element eventTarget in direction and return.
-
Else, fallback to the next step.
-
-
-
Else, fallback to the next step.
-
-
Let container be the nearest ancestor of eventTarget that is a spatial navigation container.
-
Loop: Let candidates be the result of finding focusable areas within container with the argument set to
false
if computed value of the spatial-navigation-action property on container is focus or totrue
otherwise, excluding searchOrigin -
If candidates is empty:
-
If the computed value of the spatial-navigation-action property on container is not focus and container is a scroll container that can be manually scrolled, directionally scroll the element container in direction and return.
-
Else,
-
If navigation-override is enabled in the node document of eventTarget for the origin of the active document of the top-level browsing context, then fire an event named navnotarget at eventTarget using
NavigationEvent
with:-
dir
set to direction -
relatedTarget
set to container -
the
bubbles
andcancelable
attributes set totrue
and return if the result is
false
. -
-
-
If container is the document element of the top-level browsing context, then return. The User Agent may transfer focus to its own controls (if any) honouring direction.
-
Else, if container is the document element of a nested browsing context then:
-
Set searchOrigin to container’s browsing context container
-
Set eventTarget be searchOrigin
-
Set container to the nearest ancestor of searchOrigin that is a spatial navigation container.
-
Return to the step labeled loop.
-
-
Else, set container to its closest ancestor that is itself a spatial navigation container and return to the step labeled loop.
-
-
-
-
Let bestCandidate be the result of selecting the best candidate within candidates in direction starting from searchOrigin.
-
If navigation-override is enabled in the node document of eventTarget for the origin of the active document of the top-level browsing context, then fire an event named navbeforefocus at eventTarget using
NavigationEvent
with:-
dir
set to direction -
relatedTarget
set to bestCandidate -
the
bubbles
andcancelable
attributes set totrue
and return if the result is
false
. -
-
Run the focusing steps for bestCandidate and return.
8.3. Focus Navigation Heuristics
Note: The following algorithms are inspired from Chrome’s implementation as well as from the old WICD Spec. Implementors who find better approaches or refinements to these approaches are strongly encouraged to provide feedback and help improve this specification in order to maximize interoperability. In particular, divergences in how User Agents find focusable areas may cause some elements to be focusable in some User Agents but not in others, which would be bad for users.
All geometrical operations in this section are defined to work on the result of CSS layout, including all graphical transformations, such as relative positioning or [CSS-TRANSFORMS-1].
The boundary box of an object is defined as follows:
-
if the object is a point, the boundary box is that point
-
if the object is a box or box fragment, the boundary box is the border box of that box or fragment.
-
if the object is a focusable area which is not an element, the boundary box is the axis-aligned the bounding box of that focusable area
CSS should have a term for “border box taking into account corner shaping properties like border-radius”. <https://github.com/w3c/csswg-drafts/issues/2324>
To find focusable areas within a containing element C,
with an optional visibleOnly argument that defaults to true
,
run the following steps:
-
Let focusables be the set of all the focusable areas whose DOM anchor are descendants of C. In the case of boxes with several box fragments, each box fragment is considered separately.
-
The User Agent should remove from focusables items that have a DOM anchor whose
tabindex
attribute is set to a negative value.Note: This is a "SHOULD" in order to mirror the exclusion of elements with negative tabindex from the sequential focus navigation order as defined in HTML Standard §attr-tabindex.
-
If visibleOnly is
false
, return focusables.Note: focusables may be empty
-
Let insideArea be
-
the optimal viewing region of C if C is a scroll container,
-
the viewport of C’s browsing context if C is a Document,
-
the border box of C otherwise.
-
-
Let visibles be the subset of items in focusables whose boundary box is at least partly within insideArea.
Except for elements that are in the currently non visible part of a scroller, spatial navigation does not automatically exclude elements which cannot be clicked on, for example due to being obscured by some other element. To avoid breaking assumptions in the application logic if a user actually focuses and activates such an element, and to avoid confusing users by focusing invisible or apparently unreachable elements, authors should use make these elements unreachable to spatial navigation using the same best practices as for making elements unreachable to sequential navigation, such as usingtab-index="-1"
or theinert
attribute. -
Return visibles.
Note: visibles may be empty
To select the best candidate within a set of candidates in a direction dir, starting from searchOrigin, run the following steps:
-
If candidates is empty, return
null
-
If candidates contains a single item, return that item
-
Let insideArea be
-
the optimal viewing region of searchOrigin if searchOrigin is a scroll container,
-
the viewport if searchOrigin is a Document,
-
the border box of searchOrigin otherwise.
-
-
Let insiders be the subset of candidates items whose DOM anchor are descendants of searchOrigin and whose boundary box’s
-
top edge is below the top edge of insideArea if dir is
down
-
bottom edge is above the bottom edge of insideArea if dir is
up
-
right edge is left of the right edge of insideArea if dir is
left
-
left edge is right of the left edge of insideArea if dir is
right
Note: this sub-setting is necessary to avoid going in the opposite direction than the one requested.
-
-
-
If insiders is non empty,
-
Let closest subset be the subset of insiders whose boundary box’s
-
If closest subset contains a single item, return that item, else return the first item of closest subset in document order, unless its boundary box overlaps with the boundary box of another item and that item is higher in the CSS painting order. In that case, return that item instead, unless it too is overlapped with another higher item, recursively.
-
-
Else
-
Set candidates be the subset of its items whose boundary box’s geometric center is within the closed half plane whose boundary goes through the geometric center of the searchOrigin and is perpendicular to dir.
-
For each candidate in candidates, find the shortest distance between searchOrigin and candidate in direction dir.
-
Return the item of the candidates set that has the smallest distance. If several have the same distance, return the first one in document order, unless its boundary box overlaps with the boundary box of an other item at the same distance, and that item is higher in the CSS painting order. In that case, return that item instead, unless it too is overlapped with another higher item at the same distance, recursively.
-
-
distance = euclidean + displacement - alignment - sqrt(Overlap)
The meaning of each term is as follows:
- euclidean
- The euclidean distance between P1 and P2
- displacement
-
The degree of displacement in dir between the reference and the candidate,
defined as
displacement = (absolute distance on the axis orthogonal to dir between P1 and P2 + orthogonalBias) * orthogonalWeight
- orthogonalBias:
- orthogonalWeight:
- alignment
-
The degree of alignment in dir between the reference and the candidate,
defined as:
alignment = alignBias * alignWeight
- alignBias:
- projectedOverlap:
- alignWeight:
- 5
- sqrt(Overlap)
- The square root of area of overlap between the reference and the candidate, or 0 if they do not overlap.
Note: This general formula was picked from several plausible alternatives, based on which one most often match intuition when used to select the best candidate in a series of UX test cases. Similarly, the values of alignWeight and orthogonalWeight were also determined experimentally based on the same test cases. The resulting formula is somewhat complicated, but seems to give good answers. Suggestions on improvements or simplifications are welcome.
9. Controlling spatial navigation through declarative means
9.1. Creating additional spatial navigation containers: the spatial-navigation-contain property
Name: | spatial-navigation-contain |
---|---|
Value: | auto | contain |
Initial: | auto |
Applies to: | all elements |
Inherited: | no |
Percentages: | n/a |
Computed value: | as specified |
Canonical order: | per grammar |
Animation type: | discrete |
- auto
- If the element is a scroll container then it establishes a spatial navigation container, otherwise it does not.
- contain
- The element establishes a spatial navigation container
Note: In addition, as per §8.1 Groupings of elements, the viewport of a browsing context (not limited to the top-level browsing context) also establishes a spatial navigation container.
In this case, the grid is quite sparse, so if the user tries to move down from "Foo", focus would be moved to "Next Week", as it is objectively closer in the down direction. The same is true for going down from "Bar": the focus would be moved to "Previous Week".
< div >
< button > Previous Week</ button >
< table >
< tr >< td >< th > M< th > T< th > W< th > T< th > F< th > S< th > S
< tr >< td > 0-6< td >< td >< td >< td >< td >< td >< td >< a href = "#" > Foo</ a >
< tr >< td > 6-9< td >< a href = "#" > Bar</ a >< td >< td >< td >< td >< td >< td >
< tr >< td > 9-12< td >< td >< td >< td >< td >< td >< td >
< tr >< td > 12-18< td >< td >< td >< td >< td >< td >< td >
< tr >< td > 18-21< td >< td >< td >< td >< td >< td >< td >
< tr >< td > 21-24< td >< td >< td >< td >< td >< td >< a href = "#" > Baz</ a >< td >
</ table >
< button > Next Week</ button >
</ div >
table, td, th {
border-collapse : collapse;
border : solid 1 px ;
}
td { width : 12.5 % ; }
div {
display : grid;
grid-template-columns : auto 1 fr auto;
}
button { align-self : center; }
Because the elements in the table are semantically related to each other, the author may want to provide a different navigation experience giving priority to movements inside the grid once you have focused one of its items.
Adding
to the stylesheet
would result this behavior.
It would still be possible to move the focus out of the table,
for example by going right from "Foo".
Since there is nothing in the grid that is to the right,
the focus would move to "Next week".
However, if the user navigates down from "Foo", there is something inside the grid, so focus will move there without considering things that are outside.
Note: the spatial-navigation-contain property is at-risk.
9.2. Controlling the interaction with scrolling: the spatial-navigation-action property
Name: | spatial-navigation-action |
---|---|
Value: | auto | focus | scroll |
Initial: | auto |
Applies to: | scroll containers |
Inherited: | no |
Percentages: | n/a |
Computed value: | as specified |
Canonical order: | per grammar |
Animation type: | discrete |
When the focus is inside of a scroll container and the user triggers spatial navigation, it is somewhat ambiguous whether they are requesting that the focus be moved in that direction, or whether the document should be scrolled in that direction. By default, this is automatically determined, but this property allows the author to decide between focusing or scrolling.
The precise behavior is defined in §8.2 Navigation, but a high level description of the effect of each value is provided below.
When spatial navigation is triggered, the behavior depends on the value of the spatial-navigation-action on the currently focused element if that element is a scroll container, or of its nearest scroll container ancestor if it isn’t.
- auto
- If there are visible focusable elements within the scroll container in the direction requested, the closest one becomes focused. Otherwise, the scroll container is scrolled in the direction requested.
- focus
-
The focus is moved to the nearest focusable element within the scroll container,
regardless of whether it is visible.
If there are none,
the scroll container is not scrolled,
and the search continues up the ancestry chain instead.
Note: The scroll container may be scrolled as a side effect of focusing an element which was previously not in view, but it will not be scrolled directly.
Note: If the focus value is given to spatial-navigation-action, navnotarget event occurs when there isn’t any visible candidate in the given direction within the viewport of the spatial navigation container even if the container can be scrolled more.
- scroll
-
If the currently focused element is not itself a scroll container,
this value on an ancestor scroll container has the same effect as auto.
If the currently focused element is a scroll container, it is scrolled in the direction requested without changing which element is in focus, regardless of the presence of focusable descendants.
Note: This means that spatial navigation can be used to move the focus to a scroll container and to scroll it, but not to move the focus to its descendants. However, if the focus is moved to a descendant by some other mean (such as pressing the Tab key or using the <
focus()
> method) spatial navigation can be used to move the focus to other focusable descendants.Note: The scroll value is at-risk.
Note: Earlier version of this specification did not offer a declarative way to opt into the behavior defined by focus, and instead offered a cancellable event that would be fired before scrolling, so that authors could implement that behavior themselves. However, cancellable events related to scrolling can cause performance problems, so this event was removed and the spatial-navigation-action property was introduced instead.
spatial-navigation-action: focus
.
Inside the container, there is an element which is out of the view within a scrollport.
Pressing the down arrow key moves the focus directly to it without scrolling manually.
< div class = 'scroller' >
< button class = 'item' > Box 1</ button >
< button class = 'item' > Box 2</ button >
< button class = 'item' > Box 3</ button >
</ div >
.scroller {
display : grid;
grid-template-columns : repeat ( 1 , 1 fr );
height : 300 px ;
width : 200 px ;
overflow-y : scroll;
spatial-navigation-action : focus;
}
.item {
height : 100 px ;
width : 100 px ;
margin : 50 px auto;
background-color : blue;
}
:focus {
background-color : red;
}
Appendix A. Scroll extensions
This section proposes a few extensions to CSS that should be integrated in upstream specifications, but are hosted here until then.
Terminology like this should be in [CSSOM-VIEW-1], [CSS-OVERFLOW-3], [CSS-SCROLL-SNAP-1]. <https://github.com/w3c/csswg-drafts/issues/2322>
An element e can be manually scrolled in a given direction d if:
-
The principal box established by e is a scroll container, and
-
if d is
up
ordown
, the computed value of the overflow-y property is not , and -
if d is
left
orright
, the computed value of the overflow-x property is not , and -
e is not at the scroll boundary in the direction d
-
e is not snapped to the last mandatory snap point in direction d
[CSSOM-VIEW-1] should probably define how to perform a scroll in a given direction without an explicit position. Until then, we roll our own. <https://github.com/w3c/csswg-drafts/issues/2323>
To directionally scroll an element e in direction dir:
-
Let d be a User Agent defined distance.
-
Let x be e’s current scroll position on the x axis.
-
Let y be e’s current scroll position on the y axis.
-
Use the scroll an element algorithm from [CSSOM-VIEW-1] on e to
-
(x, y - d) if dir is
up
-
(x, y + d) if dir is
down
-
(x - d, y) if dir is
left
-
(x + d, y) if dir is
right
-
Appendix B. Privacy and Security Considerations
The specification contributors believe that all known potential security risks associated with this specification have been adequately addressed. Further details are provided below.
The TAG has developed a self-review questionaire to help editors and Working Groups evaluate the risks introduced by their specifications. Answers are provided below.
- Does this specification deal with personally-identifiable information?
- No.
- Does this specification deal with high-value data?
- No.
- Does this specification introduce new state for an origin that persists across browsing sessions?
- No.
- Does this specification expose persistent, cross-origin state to the web?
- No.
- Does this specification expose any other data to an origin that it doesn’t currently have access to?
-
Mostly, no.
The one exception identified would be in the following scenario: if the author uses `window.navigate` while the focus is in a cross origin iframe, if they don’t get an event at all it means that either there was something scrollable or focusable within the iframe, as the only case where they’d get an event is when the search didn’t find anything at all goes up the tree.
This is so limited information that it does not seem it would introduces real a security risk, but it is as far as the editors can tell information that the author could not get could not get otherwise.
- Does this specification enable new script execution/loading mechanisms?
- No.
- Does this specification allow an origin access to a user’s location?
- No.
- Does this specification allow an origin access to sensors on a user’s device?
- No.
- Does this specification allow an origin access to aspects of a user’s local computing environment?
- No.
- Does this specification allow an origin access to other devices?
- No.
- Does this specification allow an origin some measure of control over a user agent’s native UI?
- No control is given over the appearance of the User Agent’s UI. Some control is given over how the User Agent performs spatial navigation, which may be considered part of its user interface. This is intentional, to let authors tailor the behavior of spatial navigation to their pages. To prevent malicious authors to interefere with the users' desire to control focus and navigate the document, this overriding mechanism is disabled by default for cross-origin iframes. See §7 The navigation-override policy-controlled feature.
- Does this specification expose temporary identifiers to the web?
- No.
- Does this specification distinguish between behavior in first-party and third-party contexts?
- No.
- How should this specification work in the context of a user agent’s "incognito" mode?
- No Difference is expected.
- Does this specification persist data to a user’s local device?
- No.
- Does this specification have a "Security Considerations" and "Privacy Considerations" section?
- Yes, this is the section you are reading now.
- Does this specification allow downgrading default security characteristics?
-
It does not allow downgrading any unrelated security mechanism.
It **does** allow authors to opt into allowing the events needed to override the default behavior of spatial navigation in cross origin iframes they trust using [feature-policy]. See §7 The navigation-override policy-controlled feature.
Acknowledgements
The editors of this specification would like to thank the following individuals for their feedback and contributions (in alphabetical order):
-
Alice Boxhall
-
Brian Kardell
-
Elika Etemad
-
Hugo Holgersson
-
Hyojin Song
-
Jeonghee Ahn
-
Junho Seo
-
Rob Dodson
-
Seungcheon Baek