From 1fa209611d91f1243955adf73ca74e8208f37e31 Mon Sep 17 00:00:00 2001 From: Tochukwu Ibe-Ekeocha Date: Mon, 12 Aug 2024 15:41:50 -0700 Subject: [PATCH] Adds documentation for a new opt-out flag for interactive dragging, and modifies the documentation for the opt-in flag --- microsoft-edge/webview2/concepts/webview-features-flags.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/microsoft-edge/webview2/concepts/webview-features-flags.md b/microsoft-edge/webview2/concepts/webview-features-flags.md index eb430b90ab..053f750046 100644 --- a/microsoft-edge/webview2/concepts/webview-features-flags.md +++ b/microsoft-edge/webview2/concepts/webview-features-flags.md @@ -84,7 +84,8 @@ The following are some of the flags we've seen used. | `edge-webview-foreground-boost-opt-in` | Opts-in to foreground boost. | | `edge-webview-foreground-boost-opt-out` | Opts-out of foreground boost. | | `edge-webview-force-personal-context` | Forces Edge WebView browser processes to run in WIP personal context. | -| `edge-webview-interactive-dragging` | Enables pointer events and focus events to occur on elements that have the `--app-region: drag` attribute. If this flag isn't set, drag elements are non-interactive. | +| `edge-webview-interactive-dragging` | Enables pointer events and focus events to occur on elements that have the `--app-region: drag` attribute. Drag elements are interactive by default. | +| `edge-webview-disable-interactive-dragging` | Disables pointer events and focus events from occuring on elements that have the `--app-region: drag` attribute. If this flag isn't set, drag elements are interactive by default. | | `edge-webview-is-background` | Indicates that WebView is being launched in the background. | | `edge-webview-no-dpi-workaround` | Disables the "DPI awareness app compatibility shim" workaround, which launches Edge WebView browser process via a shell, so that the process doesn't inherit the "app compat" shim. | | `edge-webview-run-with-package-id` | Runs WebView processes with a package identity (package ID) for a bridged Desktop app. |