Blaine
Blaine
Ah that makes sense, no wonder none of my hit test messages were working. I had to do a hack for getting the window to drag over the custom titlebar,...
An interesting find, @Codeusa implemented a hittest hack for HT_CAPTION here [RainwayApp@07653fc](https://github.com/RainwayApp/web-view/commit/07653fc229c0ff8b4256636cc560ecbfc9d86b36)
Yes but even then the hits on those regions would need to be translated to NCHITTEST messages that return the corresponding region for it to work. On Sat, Jul 25,...
While researching this, I discovered that those css attributes are actually css extensions implemented in webkit itself. Source : https://developer.mozilla.org/en-US/docs/Web/CSS/WebKit_Extensions I dont think we can add this feature to edge...
I ended up getting resize to work without any visible borders, by allowing a 2px edge to pass to the WM_NCHITTEST message. You can test it at https://github.com/Blakeinstein/Bloop
Well I dont think its possible to persist js run through "eval" b/w webpages, You might have to implement Iframes for that. Its the similar case of the commands run...
I cant test this yet, but could you try `window.external.notify(msg)` instead?
Ah well this might be a webkit only issue then, external.notify would work on ie/edge.
Well the reason this happens is during initialization, webview uses "eval" to add the external.invoke function. upon navigation that is cleared out. We could bind this to an event if...
Fixed for edge only, with #201 Can use the master branch of my fork to get it running, https://github.com/Blakeinstein/web-view/ use ```rust webview.drag_intent() // for window drag (use mousedown event listener...