test_carets_cursor.html (909B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 5 <!DOCTYPE html> 6 <html id="html"> 7 <head> 8 <title>Marionette tests for AccessibleCaret in cursor mode</title> 9 <style> 10 .block { 11 width: 10em; 12 height: 6em; 13 word-wrap: break-word; 14 overflow: auto; 15 } 16 </style> 17 </head> 18 <body> 19 <div> 20 <input id="input" value="ABCDEFGHI"> 21 <input id="input-padding" style="padding: 1em;" value="ABCDEFGHI"> 22 </div> 23 <br> 24 <div> 25 <textarea name="textarea" id="textarea" rows="4" cols="6">ABCDEFGHI</textarea> 26 <textarea id="textarea-one-line" rows="3">ABCDEFGHI</textarea> 27 </div> 28 <br> 29 <div class="block" contenteditable="true" id="contenteditable">ABCDEFGHI</div> 30 </body> 31 </html>