blob: 0449c8999d6ce83504ec0a52ef2ca22150ddc28e [file] [log] [blame]
<!DOCTYPE html>
<title>CSS Basic User Interface Test: cursor: grabbing</title>
<link rel="author" title="Florian Rivoal" href="mailto:florian@rivoal.net">
<link rel="help" href="http://www.w3.org/TR/css3-ui/#cursor">
<meta name="flags" content="interact">
<meta charset="UTF-8">
<meta name="assert" content="The 'grabbing' cursor value is supported">
<style>
div {
cursor: url("support/cursors/fail.png"), help;
cursor: grabbing;
width: 100px;
height: 100px;
border: solid blue;
}
</style>
<body>
<p>The test passes if, when moved inside the blue box, the cursor indicates that something is being grabbed (dragged to be moved).
Often rendered as the backside of a hand with fingers closed mostly out of view.</p>
<div></div>
</body>