cursor-outline-area-manual.html (748B)
1 <!DOCTYPE html> 2 <title>CSS Basic User Interface Test: cursor on outline</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" title="6.1.1. cursor property"> 5 <meta name="flags" content="interact"> 6 <meta charset="UTF-8"> 7 <meta name="assert" content="The cursor property is not applied over outline."> 8 <style> 9 div { 10 margin-top: 66px; 11 margin-left: 50px; 12 outline: blue solid 50px; 13 cursor: url("support/cursors/fail.png"), url("support/cursors/fail.cur"), help; 14 width: 0px; 15 } 16 </style> 17 <body> 18 <p>The test passes if, when moved inside the blue square, the cursor is the platform-dependent default cursor. Often rendered as an arrow.</p> 19 <div></div> 20 </body>