fix(page): handle webview mousemove during active drag for window movement
The drag overlay's pointer-events:all may not reliably intercept mouse
events from the webview's compositor surface. When the webview guest
continues sending __PEEK_MOUSEMOVE__ messages during an active drag,
they were being discarded by the early return (if !webviewHoldTimer).
Now when isDragging is true, webview mousemove messages update the
window position using the same delta calculation as the document-level
mousemove handler. This ensures drag works regardless of whether the
overlay or the webview captures the mouse events.