1 <!DOCTYPE html>
2 <html><head><title>CSS Basic User Interface Test: cursor:auto on text</title>
3 <link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal">
4 <link href="http://www.w3.org/TR/css3-ui/#cursor" rel="help">
5 <meta content="interact" name="flags">
6 <meta charset="UTF-8">
7 <meta content="The 'auto' cursor value does the same as 'text' over text." name="assert">
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 </head><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
22 </body></html>