caret-shape-underscore-001-notref-2.html (548B)
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: block; 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>