-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Event bubbling bug in QtWebEngine/Chrome 49 #9681
Event bubbling bug in QtWebEngine/Chrome 49 #9681
Comments
Unfortunately it is quite difficult to bisect the problem given that the browser is a chromium fork... |
Can you try change the line |
That appears to fix the issue; the counter gets incremented correctly when clicking inside the div after that change |
Lovely! ❤️ your amazing work on Vue |
Version
2.6.8
Reproduction link
https://jsfiddle.net/ey9c73Lx/
Steps to reproduce
What is expected?
The counter should increment for every click on the image or text contained in the div with the
@click
.What is actually happening?
Only when clicking on the border the counter is incremented
I'm developing Vue apps that run inside Tableau which is build with QT. The QT version used is quite old and so is the included QtWebEngine fork of Chrome. The upgrade from Vue 2.5 to 2.6 broke event bubbling in this older version of chrome, apparently because
event.timeStamp
is a very negative number (such as -518605237).Maybe there is a way to disable the microtask behaviour for this browser?
The text was updated successfully, but these errors were encountered: