tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

resize-014.html (847B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Basic User Interface Test: resizing videos</title>
      4 <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net">
      5 <link rel="help" href="https://drafts.csswg.org/css-ui-3/#resize">
      6 <meta name="flags" content="interact may">
      7 <meta name="assert" content="UAs may apply the resize property to <video> regardless of the value of the overflow property.">
      8 <style>
      9 video { resize: both; }
     10 </style>
     11 
     12 <p>Test passes if both <strong>width</strong> and <strong>height</strong> of the video below can be adjusted (for instance by dragging the bottom-right corner).</p>
     13 
     14 <video width="100" autoplay loop>
     15  <source
     16    src="support/test.webm"
     17    type="video/webm">
     18  <source
     19    src="support/test.mp4"
     20    type="video/mp4">
     21  &lt;video&gt; is not supported. This test is non conclusive.
     22 </video>