Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

after upgrading Google Chrome to version 63.0.3239.84 I have started receiving errors and warnings

after upgrading Google Chrome to version 63.0.3239.84 I have started receiving errors and warnings in console such as:

[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 
like image 530
wild coder Avatar asked Dec 16 '17 05:12

wild coder


People also ask

What is the newest Google Chrome version?

We've just released Chrome Dev 107 (107.0. 5299.0) for Android.

How do I fix Google Chrome update?

You might often face issues in updating the chrome and Android System Webview. To fix this problem, you can reboot your device, check your internet connection, stop auto-updating all apps, clear Google Playstore cache, and storage, leave the beta testing program, and manually update Android WebView app from Playstore.


Video Answer


1 Answers

Just add autocomplete attribute to inputs and the warnings will disappear. For example:

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

If you don't have or just don't want to set value for the attribute autocomplete use autocomplete="foo" so that warning message disappears.

More information at: https://chromereleases.googleblog.com/2017/12/stable-channel-update-for-desktop.html

like image 173
Ignacio Ara Avatar answered Sep 29 '22 23:09

Ignacio Ara