chromium/content/test/data/accessibility/html/input-types-with-value-and-placeholder.html

<!--
@BLINK-ALLOW:*editable*
@BLINK-ALLOW:richlyEditable*
-->
<!DOCTYPE html>
<html>
  <body>
    <label>Email: <input type="email" placeholder="placeholder" value="[email protected]"></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>