IMFJS
IMFJS
…r basename only instead of containing the whole local path as a prefix, which can be ugly especially if the local path uses upwards directory movement resulting in something like...
**Describe the bug** A false warning > Example.h:3 warning: FunctionSignature has @param documentation sections but no arguments is being raised. It is false, because the function signature below clearly has...
**Is your feature request related to a problem? Please describe.** Say I want to intercept some type of file when downloading using the [DownloadStarting](https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2?view=webview2-winrt-1.0.1370.28#downloadstarting) event and change the local download...
The process handle that gets passed to WaitForSingleObject in [this line](https://github.com/MicrosoftEdge/WebView2Samples/blob/02a1ccb54b6994a0fb7da7ce8a54a1825185b08e/SampleApps/WebView2APISample/ProcessComponent.cpp#L554) is missing the SYNCHRONIZE access right as specified [here](https://learn.microsoft.com/en-us/windows/win32/api/synchapi/nf-synchapi-waitforsingleobject#parameters). This needs to be requested in the adjacent OpenProcess call...
### What happened? We modify the WebView2 default context menu in our application as described [here](https://learn.microsoft.com/en-us/microsoft-edge/webview2/how-to/context-menus?tabs=csharp#removing-menu-items-from-a-default-context-menu). Among others we also need to remove the "Refresh" menu item. [This page](https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2contextmenuitem?view=webview2-winrt-1.0.2792.45#name) specifies...
### What happened? The IsDefaultDownloadDialogOpenChanged event is not occurring when the default download dialog gets closed using the Escape key. This affects our app because we have a toolbar button,...