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