OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <meta charset="utf-8"> |
| 3 <title>CSS Basic User Interface Test: caret-color: currentColor</title> |
| 4 <link rel="author" title="Chris Lilley" href="mailto:chris@w3.org"> |
| 5 <link rel="author" title="Florian Rivoal" href="mailto:florian@rivoal.net"> |
| 6 <link rel="help" href="http://www.w3.org/TR/css3-ui/#caret-color"> |
| 7 <link rel="help" href="https://drafts.csswg.org/css-color-4/#currentcolor-color"
> |
| 8 <meta name="flags" content="interact"> |
| 9 <meta name="assert" content="Test checks that caret-color:currentColor is inheri
ted as currentColor and resolves to the value of the color property at used valu
e time"> |
| 10 <style> |
| 11 textarea { |
| 12 font-size: 3em; |
| 13 font-weight: bold; |
| 14 width: 10em; |
| 15 padding: 10px; |
| 16 background: black; /* the color of a thin object like the caret is easier to
see on a black background. */ |
| 17 |
| 18 color: lime; |
| 19 } |
| 20 div { |
| 21 caret-color: currentcolor; |
| 22 color: red; |
| 23 } |
| 24 </style> |
| 25 <body> |
| 26 <p>Test passes if, when the text area below is focused for editing, the text i
nsertion caret is green</p> |
| 27 <p>The shape of the caret, and whether it flashes, are not part of the test.</
p> |
| 28 <div> |
| 29 <textarea autofocus></textarea> |
| 30 </div> |
| 31 </body> |
OLD | NEW |