cursor-013-manual.html (782B)
1 <!DOCTYPE html> 2 <title>CSS Basic User Interface Test: cursor: nesw-resize</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 'nesw-resize' cursor value is supported"> 8 <style> 9 div { 10 cursor: url("support/cursors/fail.png"), help; 11 cursor: nesw-resize; 12 width: 100px; 13 height: 100px; 14 border: solid blue; 15 } 16 </style> 17 <body> 18 <p>The test passes if, when moved inside the blue box, the cursor indicates that something can be resized diagonally 19 along a north-east to south-west axis, bidirectionally. 20 Often rendered as arrows pointing north-east and south-west.</p> 21 <div></div> 22 </body>