[HTML5] Bug. TouchEvents wrong coordinates if canvas inside transfomed DIV

lime [7.8.0]
openfl [9.0.2]

if canvas lay inside div with style “transform: scale(0.5)”
all TouchEvents has coordiantes 2 times more then real positions.
MouseEvens works correct.

lime/_internal/backend/html5/HTML5Window.hx
function handleTouchEvent at lines 729-730 used
windowWidth = rect.width;
windowHeight = rect.height;

but function handleMouseEvent
use parent.__width and parent.__height
and these values works better.

Thanks we’ll see what we can do :smiley: