cursor-auto-001-manual.html (692B)
1 <!DOCTYPE html> 2 <title>CSS Basic User Interface Test: cursor:auto on text</title> 3 <link rel="author" title="Florian Rivoal" href="mailto:florian@rivoal.net"> 4 <link rel="help" href="http://www.w3.org/TR/css3-ui/#cursor"> 5 <meta name="flags" content="interact"> 6 <meta charset="UTF-8"> 7 <meta name="assert" content="The 'auto' cursor value does the same as 'text' over text."> 8 <style> 9 div { 10 cursor: url("support/cursors/fail.png"), help; 11 cursor: auto; 12 color: blue; 13 } 14 p { 15 cursor: text; 16 } 17 </style> 18 <body> 19 <p>The test passes if, when moved over the blue text, the cursor indicates text that may be selected, like it does when placed over this sentence.</p> 20 <div>Lorem ipsum</div> 21 </body>