Results 38 comments of Conan

The problem seems to be with the draggable() helper not accounting for the zoom-level. Here's a small patch that I found to work, although I'm not really sure why: ---...

As you've probably found out by now, a little test after getting the zoom value is a good idea: var zoom = parseFloat( $(document.body).css('zoom') ); if ( isNaN(zoom)) { zoom...

Thanks you for getting back so quickly. To your points: 1. I will look into `route.fallback()`, thank you for the suggestion. 2. We try to avoid the practice of modifying...

I've tried `route.fallback` and `route.fulfill` in the playground I linked to (so I've not tried in our production app yet) and I'm curious about the content of the HAR file....

Just dropping for later reference, I've not looked into it yet: - https://github.com/microsoft/playwright/issues/21405

> does Math's version of these functions, working with JS Numbers, deliver insufficient accuracy? It's not just a question of accuracy, but of [IEEE-754 confusion](https://stackoverflow.com/questions/588004/is-floating-point-math-broken), especially in the world of...