cursor-017

cursor: all-scroll

WeasyPrint

This browser

Flags
interact
Assertion
The 'all-scroll' cursor value is supported

Source

 1 <!DOCTYPE html>
 2 <html><head><title>CSS Basic User Interface Test: cursor: all-scroll</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 'all-scroll' cursor value is supported" name="assert">
 8 <style>
 9 div {
10   cursor: url("support/cursors/fail.png"), help;
11   cursor: all-scroll;
12   width: 100px;
13   height: 100px;
14   border: solid blue;
15 }
16 </style>
17 </head><body>
18   <p>The test passes if, when moved inside the blue box, the cursor indicates that the something can be scrolled in any direction.
19   Often rendered as arrows pointing up, down, left, and right with a dot in the middle.</p>
20   <div></div>
21 
22 </body></html>