chromium/chrome/test/data/autofill/autofill_address_enabled.html

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>AutofillAddressEnabled</title>
</head>

<body>
    <form method="post">
        <label for="name">Name</label>
        <input name="name" id="name" type='text'>

        <label for="street-address">Address</label>
        <input name="street-address" id="street-address" required autocomplete="street-address">

        <label for="postal-code">Postal code</label>
        <input name="postal-code" id="postal-code" required autocomplete="postal-code">

        <label for="city">City</label>
        <input name="city" id="city" required autocomplete="address-level2">

        <label for="phone">Phone</label>
        <input name="phone" id="phone" type="tel" required autocomplete="tel">

        <label for="email">Email</label>
        <input name="email" id="email" required placeholder="[email protected]" autocomplete="email">

        <input type="submit" id="button" value="OK" class="test-target-button">
    </form>
</body>
</html>