tor-browser

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

cursor-image-015-manual.html (894B)


      1 <!DOCTYPE html>
      2 <title>CSS Basic User Interface Test: Cursor property, image-set() value</title>
      3 <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
      4 <link rel="help" href="https://drafts.csswg.org/css-ui-4/#cursor">
      5 <meta name="flags" content="interact image">
      6 <meta charset="UTF-8">
      7 <meta name="assert" content="For cursors, UAs must support image-set() containing simple url() based images">
      8 
      9 <style>
     10 div.test{
     11  background: #D2B48C; border: 2px solid #555;
     12  cursor: image-set( "support/cursors/woolly-64.ico" 1x), image-set( "support/cursors/woolly-64.png" 1x), help;
     13  width: 128px; height: 128px;
     14 }
     15 </style>
     16 <body>
     17  <p>The test passes if, when moved inside the colored rectangle, the cursor looks like
     18  a sheep.</p>
     19  <p>If inside the rectangle the cursor does not change, or looks like a help cursor, the test fails.</p>
     20  <div class="test"> </div>
     21 </body>