| <!DOCTYPE html> |
| <title>caret-shape block color is the same as what is specified by caret-color property</title> |
| <link rel=help href="https://drafts.csswg.org/css-ui/#caret-shape"> |
| <link rel=match href="caret-shape-block-zoom-ref.html"> |
| <meta name="assert" |
| content="Test checks that caret-shape block zooms in line with the zoom factor."> |
| <style> |
| div { |
| font-size: 3em; |
| zoom: 2; |
| } |
| |
| #target { |
| caret-color: lime; |
| caret-shape: block; |
| caret-animation: manual; |
| } |
| |
| #target:focus { |
| outline: none; |
| } |
| </style> |
| <div id="target" contenteditable>abc</div> |
| <script> |
| target.focus(); |
| </script> |