These test pages are for testing and verifying autoplay working in conjunction with various other attributes like muted and playsinline. There are two main sections: plain, and videojs.
Plain means that this is just a regular video element without Video.js. videojs means that this is running with Video.js.
These are divided into a few ways of setting the attributes: HTML attribute, properties on the DOM object, setAttribute method, calling play with attributes. There probably should be another set of the various mixtures of things, like HTML attribute for muted with a setAttribute of autoplay but to keep the testing matrix less complicated, we will forgo such tests.
These are split into: HTML attributes, Video.js options, player methods. Again, we won't be looking into mixtures of these quite yet.
Plain | Video.js |
---|---|
Simple | Simple |
Plain | Video.js |
---|---|
Autoplay | Autoplay |
Autoplay, Muted | Autoplay, Muted |
Autoplay, Playsinline | Autoplay, Playsinline |
Autoplay, Muted, Playsinline | Autoplay, Muted, Playsinline |
Properties | setAttribute |
---|---|
Autoplay | Autoplay |
Muted | Muted |
Playsinline | Playsinline |
Muted, Playsinline | Muted, Playsinline |
Autoplay, Muted | Autoplay, Muted |
Autoplay, Playsinline | Autoplay, Playsinline |
Autoplay, Muted, Playsinline | Autoplay, Muted, Playsinline |