wpt / css / css-ui / caret-shape-block-zoom.html

Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-ui/caret-shape-block-zoom.html

<!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>

/css/css-ui/caret-shape-block-zoom-ref.html

<!DOCTYPE html>
<style>
  div {
    font-size: 3em;
    zoom: 2;
  }

  span {
    background-color: rgba(0, 255, 0, 1);
  }
</style>
<div><span>a</span>bc</div>