cursor-020

cursor - value

WeasyPrint

This browser

Flags
interact
Assertion
If the user agent cannot handle an user-defined cursor, it must use the generic cursor at the end of the list. The auto value should make UA determine the cursor to display based on the current context.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3 
 4  <head>
 5 
 6   <title>CSS Test: cursor - &lt;uri&gt; value</title>
 7 
 8   <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
 9   <link rel="help" href="http://www.w3.org/TR/CSS21/ui.html#cursor-props">
10   <meta content="interact" name="flags">
11   <meta content="If the user agent cannot handle an user-defined cursor, it must use the generic cursor at the end of the list. The auto value should make UA determine the cursor to display based on the current context." name="assert">
12 
13   <style type="text/css">
14   div {cursor: url("inexistent.cur"), auto;}
15   </style>
16 
17  </head>
18 
19  <body>
20 
21   <p>Hovering the pointing device over the text sample should make it rendered as a text cursor (often an I-beam).</p>
22 
23   <div>text sample</div>
24 
25  </body>
26 </html>