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

content / test / data / accessibility / html / input-types-with-value-and-placeholder.html [blame]

<!--
@BLINK-ALLOW:*editable*
@BLINK-ALLOW:richlyEditable*
-->
<!DOCTYPE html>
<html>
  <body>
    <label>Email: <input type="email" placeholder="placeholder" value="email@example.com"></label>
    <label>Number: <input type="number" placeholder="placeholder" value="3"></label>
    <label>Password: <input type="password" placeholder="placeholder" value="pwd"></label>
    <label>Search: <input type="search" placeholder="placeholder" value="search"></label>
    <label>Tel: <input type="tel" placeholder="placeholder" value="555-1212"></label>
    <label>Text: <input type="text" placeholder="placeholder" value="just text"></label>
    <label>Url: <input type="url" placeholder="placeholder" value="https://www.example.com"></label>
  </body>
</html>