tor-browser

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

fixedpos-video-in-abspos-quirk-crash.html (711B)


      1 <!-- Quirks mode needed -->
      2 <title>CSS Flexbox: fixed positioned video in absolute positioned on quirks mode</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-containers">
      4 <link rel="help" href="https://drafts.csswg.org/css-sizing-3/#percentage-sizing">
      5 <link rel="help" href="https://crbug.com/841276">
      6 <meta name="assert" content="This test ensures that a video works with fixed position in absolute position on quirks mode.">
      7 <div style="position:absolute;">
      8  <div>
      9    <!-- Video element may work with shadow DOM using flex for media controls.
     10         This is mostly useful for browsers that use flex inside of video.-->
     11    <video style="position:fixed;"></video>
     12  </div>
     13 </div>