caret-color-014

caret-color links

WeasyPrint

This browser

Flags
interact
Assertion
Test checks that caret-color can be set on a contenteditable link

Source

 1 <!DOCTYPE html>
 2 <html><head><meta charset="utf-8">
 3 <title>CSS Basic User Interface Test: caret-color links</title>
 4 <link href="mailto:rego@igalia.com" rel="author" title="Manuel Rego Casasnovas">
 5 <link href="http://www.w3.org/TR/css3-ui/#caret-color" rel="help">
 6 <meta content="interact" name="flags">
 7 <meta content="Test checks that caret-color can be set on a contenteditable link" name="assert">
 8 <style>
 9   a {
10     font-size: 3em;
11     font-weight: bold;
12     width: 10em;
13     padding: 10px;
14     background: black; /* the color of a thin object like the caret is easier to see on a black background. */
15 
16     color: white;
17     caret-color: lime;
18   }
19 </style>
20 </head><body>
21   <p>Test passes if, when the link is focused for editing, the text insertion caret is green.</p>
22   <p>The shape of the caret, and whether it flashes, are not part of the test.</p>
23   <a href="#" contenteditable="" id="link">link</a>
24   <script>
25     window.onload = function() {
26       document.getElementById("link").focus();
27     }
28   </script>
29 
30 </body></html>