tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

caret-shape-underscore-001-notref-1.html (546B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <meta charset="utf-8">
      4 <script src="/common/reftest-wait.js"></script>
      5 <style>
      6  #target {
      7    font-size: 3em;
      8    caret-color: green;
      9    caret-shape: bar;
     10    caret-animation: manual;
     11  }
     12  #target:focus {
     13    outline: none;
     14  }
     15 </style>
     16 <p>Test passes if, when the text below is focused for editing, the text insertion caret is a green underscore.</p>
     17 <div id="target" contenteditable spellcheck="false">test</div>
     18 <script>
     19  document.getElementById("target").focus();
     20  takeScreenshot();
     21 </script>