In Chrome, it appears that ctrl-+/- causes winit/wgpu to have a runtime error. It appears the issue is that the canvas size / backing size becomes mismatched, resulting in an runtime error.
Is there a way to disable ctrl-+/- and other resize keys in Chrome ?
the error is caused by your application doesn't handle resizing events correctly, it's not an winit or wgpu error per se, so I'd suggest fix your application instead of disable the zoom functionality. properly handling doesn't mean your program need to do adaptive rendering, it simply mean action should be taken inside your application instead of at the browser level.