Warnings on b-form-select open/close in recent Chrome
See original GitHub issueTo recreate: Go to https://bootstrap-vue.js.org/play/ in Chrome v66 (I believe v51 or newer) and enter the following template:
<b-form-select>
<option>Sample</option>
</b-form-select>
Then open and close the resulting select input several times.
Expected: Developer console free of warnings and errors.
Actual: See the following warning in the JavaScript console:
[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
Issue Analytics
- State:
- Created 5 years ago
- Comments:11 (8 by maintainers)
Top Results From Across the Web
Manage warnings about unsafe sites - Google Chrome Help
You'll see a warning if the content you're trying to see is dangerous or deceptive. These sites are often called "phishing" or "malware"...
Read more >bootstrap-vue - UNPKG
env'\n\n/**\n * Log a warning message to the console with BootstrapVue formatting\n ... {\n case KEYS: return function keys() { return new Constructor(this, ......
Read more >node_modules/bootstrap-vue/dist/bootstrap-vue.esm.min.js.map
env'\n\n/**\n * Log a warning message to the console with BootstrapVue ... 'Browse',\n // Chrome default file prompt\n placeholder: 'No file ...
Read more >Untitled
Canal street new york city map, Luis fabiano pes 2013 habilidades, ... 90460 and 90461 cpt codes, Open close div jquery example, Brian...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think it might be docs use of
v-b-scroll-spy
directive… which monitors the page scrolling to highlight the current page section TOC (on the right hand side).We’ll have to update our
eventOn
handler to detect support of thepassive
option (not all browsers support it, and if present treat it as wanting to use capture mode).Will see what we can do over the next week.
My work laptop still has chrome v60 (can’t update it as it is controlled by work IT department), and I see the warning crop up once and a while.