diff --git a/_rules/audio-or-video-avoids-automatically-playing-audio-80f0bf.md b/_rules/audio-or-video-avoids-automatically-playing-audio-80f0bf.md index e83f42c6f6..f952b94e5e 100755 --- a/_rules/audio-or-video-avoids-automatically-playing-audio-80f0bf.md +++ b/_rules/audio-or-video-avoids-automatically-playing-audio-80f0bf.md @@ -57,7 +57,7 @@ This rule applies to any `audio` or `video` element for which all the following - **autoplay**: the element has an `autoplay` [attribute value][] of `true`; and - **not muted**: the element has a `muted` [attribute value][] of `false`; and - **not paused**: the element has a `paused` [attribute value][] of `false`; and -- **duration**: the element has a [media resource][] lasting more than 3 seconds and that contains audio. +- **play time**: the element has a [media resource][] that contains audio and that stops after no more than 3 seconds. This can be changed by authors, for example using a [temporal media fragment URI](https://www.w3.org/TR/media-frags/#naming-time) (`#t`) in the source URI. ## Expectation @@ -101,18 +101,7 @@ This `audio` element has an [instrument][] to pause, stop, or turn the audio vol #### Passed Example 2 -This `video` element does not play for longer than 3 seconds. - -```html - -``` - -#### Passed Example 3 - -This `video` element autoplays and has an [instrument][] to pause, stop, or turn the audio volume off. +This `video` element is longer than 3 seconds, autoplays, and has an [instrument][] to pause, stop, or turn the audio volume off. ```html @@ -192,6 +181,43 @@ This `video` element has no audio output. #### Inapplicable Example 3 +This `video` element does not play for longer than 3 seconds. + +```html + +``` + +#### Inapplicable Example 4 + +This `video` element autoplays but is paused. + +```html + + + +``` + +#### Inapplicable Example 5 + +This `video` element does not play automatically. + +```html + +``` + +#### Inapplicable Example 6 + This `audio` element does not play automatically. ```html @@ -202,4 +228,4 @@ This `audio` element does not play automatically. [instrument]: #instrument-to-achieve-an-objective 'Definition of Instrument to Achieve an Objective' [media resource]: https://html.spec.whatwg.org/multipage/media.html#media-resource 'HTML Specification of Media Resource' [sc142]: https://www.w3.org/TR/WCAG22/#audio-control 'Success Criterion 1.4.2 Audio Control' -[web page]: #web-page-html 'Definition of HTML web page' +[web page]: #web-page-html 'Definition of HTML web page' \ No newline at end of file