cursor-box-007

cursor on the margin-box

WeasyPrint

This browser

Flags
interact
Assertion
The cursor property is only applied within the border-edge, which follows border-radius.

Source

 1 <!DOCTYPE html>
 2 <html><head><title>CSS Basic User Interface Test: cursor on the margin-box</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 only applied within the border-edge, which follows border-radius." name="assert">
 8 <style>
 9 #container {
10   position: absolute;
11   background: blue;
12   cursor: crosshair;
13 }
14 #test {
15   border: solid white 50px;
16   border-radius: 50%;
17   cursor: default;
18 }
19 </style>
20 </head><body>
21   <p>The test passes if, when moved over the blue areas, the cursor looks like a crosshair (e.g. short line segments resembling a "+" sign).</p>
22   <div id="container"><div id="test"></div></div>
23 
24 </body></html>