1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15

content / test / data / accessibility / html / scrollable-textarea.html [blame]

<!--
* Test scrollXMin -- the presence of this indicates something is scrollable.
@BLINK-ALLOW:scrollXMin=*
-->
<html>
  <style>
  body { font-style: monospace; width: 999px;}
  </style>
  <body>
    <!-- Not scrollable -->
    <textarea cols="14" rows="2">little</textarea>
    <!-- Scrollable -->
    <textarea cols="14" rows="2">lots+of+text+ lots+of+text+ lots+of+text+ lots+of+text+ lots+of+text+ lots+of+text+ lots+of+text+ lots+of+text+ lots+of+text+ lots+of+text+ lots+of+text+ lots+of+text</textarea>        
  </body>
</html>