Revision 28d63f19babbd14a18a0219acf21362fc5d52dbc authored by Henrik Skupin on 28 March 2018, 18:49:31 UTC, committed by moz-wptsync-bot on 28 March 2018, 18:49:31 UTC
To retrieve links via "link text" or "partial link text" the rendered
content of the element has to be used. This can be the case for CSS
transformations like "uppercase".
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1381519
gecko-commit: 3e204686f1b10441f48435890241dff6706d04dd
gecko-integration-branch: central
gecko-reviewers: ato
1 parent f5b48cf
Raw File
cursor-013.html
<!DOCTYPE html>
<title>CSS Basic User Interface Test: cursor: nesw-resize</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 'nesw-resize' cursor value is supported">
<style>
div {
  cursor: url("support/cursors/fail.png"), help;
  cursor: nesw-resize;
  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 can be resized diagonally
  along a north-east to south-west axis, bidirectionally.
  Often rendered as arrows pointing north-east and south-west.</p>
  <div></div>
</body>
back to top