Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="utf-8">
<script src="/common/reftest-wait.js"></script>
<style>
  #target {
    font-size: 3em;
    caret-color: green;
    caret-shape: bar;
    caret-animation: manual;
  }
  #target:focus {
    outline: none;
  }
</style>
<p>Test passes if, when the text below is focused for editing, the text insertion caret is a green underscore.</p>
<div id="target" contenteditable spellcheck="false">test</div>
<script>
  document.getElementById("target").focus();
  takeScreenshot();
</script>