Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Problem/Bug]: Find:StartAsync clears existing entry on a delay when passing a new FindTerm in #5178

Open
pushkin- opened this issue Mar 25, 2025 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@pushkin-
Copy link

What happened?

If I trigger the Find popup and pass in a starting search term like this:

 var findOptions = wv2.CoreWebView2.Environment.CreateFindOptions();
 findOptions.FindTerm = "a";
 wv2.CoreWebView2.Find.StartAsync(findOptions);

It takes a second or so for the previous search term to be replaced by the new one, so there's a moment where the user can still see the old term.

If you set the FindTerm to be longer (findOptions.FindTerm = "aaaaaaaaaaaaaaaaaaaaaaaaa";), the change becomes near-instantaneous.

Importance

Low. My app is not very affected, or this only affects development.

Runtime Channel

Prerelease (Edge Canary/Dev/Beta)

Runtime Version

136.0.3216.0 canary

SDK Version

3116.0

Framework

Winforms

Operating System

Windows 11

OS Version

24H2 OS Build 26100.3476

Repro steps

  1. open sample WinForms app
  2. In WebView2Control_CoreWebView2InitializationCompleted, add this.webView2Control.CoreWebView2.Settings.AreBrowserAcceleratorKeysEnabled = false;
  3. In WebView2Control_KeyDown, add this code:
if (e.KeyCode == Keys.F && Control.ModifierKeys.HasFlag(Keys.Control))
{
     e.Handled = true;

         var wv2 = (WebView2)sender;
	var findOptions = wv2.CoreWebView2.Environment.CreateFindOptions();
	findOptions.FindTerm = "a";
	wv2.CoreWebView2.Find.StartAsync(findOptions);

}
  1. Run the app
  2. press ctrl+f
  3. type some text in there
  4. close the popup
  5. press ctrl f
  6. notice the text you typed is still in there and gets replaced with "a" in a second
  7. If you make the FindTerm longer (e.g. "aaaaaaaaaaaaaaaaaaaaaaaaa"), the change happens more quickly

Repros in Edge Browser

No, issue does not reproduce in the corresponding Edge version

Regression

No, this never worked

Last working version (if regression)

No response

@pushkin- pushkin- added the bug Something isn't working label Mar 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants