tor-browser

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

mix-blend-mode-video-notref.html (633B)


      1 <!DOCTYPE html>
      2 <html>
      3    <head>
      4        <title>CSS Test: Video element with mix-blend-mode.</title>
      5        <link rel="author" title="Mihai Tica" href="mailto:mitica@adobe.com">
      6        <style type="text/css">
      7            div {
      8                width: 480px;
      9                height: 352px;
     10                background: #FF0;
     11            }
     12        </style>
     13    </head>
     14    <body>
     15        <p>Test passes if you can see a green circle over a blue background.</p>
     16        <div>
     17            <video autoplay>
     18                <source src="../support/red_circle.mp4" type="video/mp4">
     19            </video>
     20        </div>
     21    </body>
     22 </html>