web-dev-qa-db-ja.com

Google Chromeをバージョン63.0.3239.84にアップグレードした後、エラーと警告を受け取り始めました

google Chromeをバージョン63.0.3239.84にアップグレードした後、コンソールで次のようなエラーと警告を受信し始めました。

[DOM] Found 3 elements with non-unique id #SMTPSetting:
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"):
[Violation] Added non-passive event listener to a scroll-blocking 'mousewheel' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952 
16
wild coder

入力にautocomplete属性を追加するだけで、警告は消えます。例えば:

<div class="form-group">
    <input type="email" class="form-control" autocomplete="email" required>
    <input type="password" class="form-control" autocomplete="password" required>
</div>

属性の値を設定していない場合、または設定したくない場合は、autocompleteを使用しますautocomplete="foo"そのため、警告メッセージは消えます。

詳細: https://chromereleases.googleblog.com/2017/12/stable-channel-update-for-desktop.html

29
Ignacio Ara

彼らは最近このオプションを追加したようで、推奨事項を非表示にします:-source:recommendation in the filter box。

偶然見つけました。フィルターボックスは、Ctrl + Spaceキー(Windows)によるオートコンプリートもサポートしています。

1
Michelle B.