Streamed media content represents a large portion of data transmitted over the internet. By not defaulting to autoplaying media, the climate impact of this can be minimised.
This rule aims to...
Examples of incorrect code for this rule:
<video autoplay />
<video autoplay={true} />Examples of correct code for this rule:
<video />
<video autoplay={false} />If the media is the main reason a user visits this page, it can be assumed that loading the data will improve the user experience.