cursor-border-area

cursor on the border area

WeasyPrint

This browser

Flags
interact
Assertion
The cursor property is applied over the border area.

Source

 1 <!DOCTYPE html>
 2 <html><head><title>CSS Basic User Interface Test: cursor on the border area</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 cursor property is applied over the border area." name="assert">
 8 <style>
 9 div {
10   border: solid 50px blue;
11   cursor: crosshair;
12 }
13 </style>
14 </head><body>
15   <p>The test passes if, when moved inside the blue rectangle, the cursor looks like a crosshair (e.g. short line segments resembling a "+" sign).</p>
16   <div></div>
17 
18 </body></html>