Skip to content

Commit 8665ede

Browse files
Merge branch 'develop' into fix-4c31df
2 parents 5b12070 + 15a48b1 commit 8665ede

2 files changed

+4
-2
lines changed

_rules/aria-required-owned-element-bc4a75.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ This element with the `list` role only owns elements with the `listitem` role. T
7676

7777
#### Passed Example 2
7878

79-
This element with the `grid` role only owns elements with the `row` role, and the element with the `row` role only owns elements with the `cell` role. The `row` role is one of the [required owned elements][] for `grid`, and `cell` is one of the [required owned elements][] for `row`.
79+
This element with the `grid` role only owns elements with the `row` role, and the element with the `row` role only owns elements with the `gridcell` role. The `row` role is one of the [required owned elements][] for `grid`, and `gridcell` is one of the [required owned elements][] for `row`.
8080

8181
```html
8282
<table role="grid">
8383
<tr role="row">
84-
<td role="cell">Item 1</td>
84+
<td role="gridcell">Item 1</td>
8585
</tr>
8686
</table>
8787
```

_rules/audio-or-video-avoids-automatically-playing-audio-80f0bf.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ For each test target, the [outcome](#outcome) of at least one of the following r
7575

7676
The native `video` and `audio` controls in several browser and assistive technology combinations are not keyboard accessible and the `video` or `audio` element itself may not be announced. Authors are recommended to use custom controls for keyboard navigation and cross browser accessibility support in general. Some major browsers no longer automatically play the 'video' unless the 'video' is muted.
7777

78+
User agents do not always automatically play media, even when an `autoplay` attribute is present. This is done to avoid autoplaying media interrupting the user when they do not want to, especially when the media is likely to contain sound. The decision to respect the `autoplay` attribute or not depends on user settings and previous behavior (interaction with the site). Therefore, some media files may fail this rule but satisfy [Success Criterion 1.4.2 Audio Control][sc142] on some combination of User Agent and user settings. The rule considers that the presence of the `autoplay` attribute is an indication of the author intention to have automatically playing media, and therefore requires the author to provide a mechanism to control the sound.
79+
7880
## Background
7981

8082
The [instruments][instrument] used to pass this rule (if any), must meet all level A Success Criteria in order to fully satisfy [Success Criterion 1.4.2 Audio Control][sc142]. These extra requirements are left out of this rule, and should be tested separately.

0 commit comments

Comments
 (0)