container-for-cue-ref.html (594B)
1 <!doctype html> 2 <html class="reftest-wait"> 3 <head> 4 <title>CSS Test Reference</title> 5 <script src="/common/reftest-wait.js"></script> 6 <style> 7 video { 8 contain: size; 9 width: 200px; 10 height: 200px; 11 } 12 video::cue { background-color: green } 13 video::cue(b) { color: lime } 14 </style> 15 </head> 16 <body> 17 <video autoplay onplaying="this.onplaying = null; this.pause(); takeScreenshot();"> 18 <track default src="support/test.vtt"> 19 <source src="/media/white.mp4" type="video/mp4"> 20 <source src="/media/white.webm" type="video/webm"> 21 </video> 22 </body> 23 </html>