OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <meta charset="utf-8"> |
| 3 <title>CSS Basic User Interface Test: caret-color auto</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 <meta name="flags" content="interact should"> |
| 8 <meta name="assert" content="Test checks that caret-color: auto matches currentC
olor"> |
| 9 <style> |
| 10 textarea { |
| 11 font-size: 3em; |
| 12 font-weight: bold; |
| 13 width: 10em; |
| 14 padding: 10px; |
| 15 background: black; /* the color of a thin object like the caret is easier to
see on a black background. */ |
| 16 |
| 17 color: lime; |
| 18 caret-color: auto; /*initial value, but to be sure in case the UA stylesheet
sets something else */ |
| 19 } |
| 20 </style> |
| 21 <body> |
| 22 <p>Test passes if, when the text area below is focused for editing, the text i
nsertion caret is green, |
| 23 like the text in that textarea.</p> |
| 24 <p>The shape of the caret, and whether it flashes, are not part of the test.</
p> |
| 25 <textarea autofocus></textarea> |
| 26 </body> |
OLD | NEW |