tor-browser

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

prefers-contrast-002.html (373B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>high contrast mode should cause a black box to be drawn</title>
      6 
      7 <style type="text/css">
      8    div {
      9        width: 100px;
     10        height: 100px;
     11    }
     12    @media (prefers-contrast: more) {
     13        div {
     14            outline: 2px solid #000000;
     15        }
     16    }
     17 </style>
     18 </head>
     19 <body>
     20  <div></div>
     21 </body>
     22 </html>