Skip to content

Commit fddc3c4

Browse files
kherr-a11yHelenBurgeJym77
authored
Survey amendments iframe-not-focusable-has-no-interactive-content-akn7bn (#1779)
* Survey amendments iframe-not-focusable-has-no-interactive-content-akn7bn * Update iframe-not-focusable-has-no-interactive-content-akn7bn.md * Update iframe-not-focusable-has-no-interactive-content-akn7bn.md * Update _rules/iframe-not-focusable-has-no-interactive-content-akn7bn.md Co-authored-by: Jean-Yves Moyen <jym@siteimprove.com> * Update iframe-not-focusable-has-no-interactive-content-akn7bn.md Co-authored-by: HelenBurge <41951878+HelenBurge@users.noreply.github.com> Co-authored-by: Jean-Yves Moyen <jym@siteimprove.com>
1 parent 73716a2 commit fddc3c4

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

_rules/iframe-not-focusable-has-no-interactive-content-akn7bn.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@ acknowledgments:
2828

2929
## Applicability
3030

31-
This rule applies to any `iframe` element that has a negative number as a `tabindex` [attribute value][].
31+
This rule applies to any non-focusable `iframe` element that has [focusable][] content.
3232

3333
## Expectation
3434

35-
For each test target, the [nested browsing context][] does not include elements that are [visible][] and part of the [sequential focus navigation][]. An element is "included" in a [nested browsing context][] if its [owner document][] is the [container document][] of the [nested browsing context][].
35+
For each test target, the [nested browsing context][] does not [contain](#akn7bn:contain) elements that are [visible][] and part of the [sequential focus navigation][].
36+
37+
An element is <dfn id="akn7bn:contain">contained</dfn> in a [nested browsing context][] if its [owner document][] is the [container document][] of the [nested browsing context][].
3638

3739
## Assumptions
3840

@@ -79,6 +81,14 @@ This `iframe` element contains no [visible][] content because of the small size
7981
<iframe tabindex="-1" width="1" height="1" srcdoc="<a href='/'>Home</a>"></iframe>
8082
```
8183

84+
#### Passed Example 4
85+
86+
This `iframe` element contains no [visible][] content because the iframe is hidden.
87+
88+
```html
89+
<iframe tabindex="-1" hidden srcdoc="<a href='/'>Home</a>"></iframe>
90+
```
91+
8292
### Failed
8393

8494
#### Failed Example 1
@@ -106,3 +116,4 @@ This `iframe` element does not have a `tabindex` [attribute value][] that is a n
106116
[sc211]: https://www.w3.org/TR/WCAG21/#keyboard 'WCAG 2.1 Success criterion 2.1.1 Keyboard'
107117
[sequential focus navigation]: https://html.spec.whatwg.org/#sequential-focus-navigation 'HTML sequential focus navigation, 2020/12/18'
108118
[visible]: #visible 'Definition of visible'
119+
[focusable]: #focusable 'Definition of focusable'

0 commit comments

Comments
 (0)