tor-browser

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

mq-deprecated-001.html (787B)


      1 <!doctype html>
      2 <title>Test: deprecated media types</title>
      3 <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
      4 <link rel="help" href="https://drafts.csswg.org/mediaqueries-4/#media-types">
      5 <link rel="help" href="https://drafts.csswg.org/mediaqueries-4/#ref-for-media-type%E2%91%A0%E2%91%A6">
      6 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      7 <meta name="assert" content="deprecated media types must not match">
      8 <style>
      9 div {
     10    width: 100px;
     11    height: 100px;
     12    background-color: green;
     13 }
     14 
     15 @media
     16    tty,
     17    tv,
     18    projection,
     19    handheld,
     20    braille,
     21    embossed,
     22    aural,
     23    speech
     24 {
     25    div { background-color: red; }
     26 }
     27 </style>
     28 
     29 <p>Test passes if there is a filled green square and <strong>no red</strong>.
     30 
     31 <div></div>