Chrome autofill styles change – issue 960918

https://bugs.chromium.org/p/chromium/issues/detail?id=960918&q=component%3AUI%3EBrowser%3EAutofill%20font&colspec=ID%20Pri%20M%20Stars%20ReleaseBlock%20Component%20Status%20Owner%20Summary%20OS%20Modified

by Thibaud Colas

HTML

<!doctype html>
<html lang="">
<head>
  <meta charset="utf-8">
  <title>Chrome autofill styles</title>
  <style>
    input[type="email"] {
      font-family: monospace;
      font-size: 2rem;
      color: red;
      font-weight: 900;
      font-style: italic;
      line-height: 3rem;
    }
  </style>
</head>

<body>
  <form>
    <label>
      <div>Email</div>
      <input type="email" name="email" autocomplete="email"/>
    </label>
  </form>
</body>
</html>