[webkit-changes] [WebKit/WebKit] f506ea: REGRESSION(273517 at main): `findString:` skips every...

Charlie Wolfe noreply at github.com
Fri Feb 9 01:11:05 PST 2024


  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: f506eadd86a56445d847dc8219aa3e5acb87ed70
      https://github.com/WebKit/WebKit/commit/f506eadd86a56445d847dc8219aa3e5acb87ed70
  Author: Charlie Wolfe <charliew at apple.com>
  Date:   2024-02-09 (Fri, 09 Feb 2024)

  Changed paths:
    M Source/WebKit/WebProcess/Plugins/PDF/PDFPlugin.mm

  Log Message:
  -----------
  REGRESSION(273517 at main): `findString:` skips every other match in PDFs
https://bugs.webkit.org/show_bug.cgi?id=269025
rdar://122588827

Reviewed by Sammy Gill.

To prepare for site isolation, 273517 at main made changes to have separate IPC messages for searching web
processes for a string and setting selection. To make this work correctly, I added `DoNotSetSelection`
to the `FindOptions` enum to indicate that a `FindString` message should be limited to search. However,
`PDFPlugin::findString()` did not respect this flag, so the selection would be updated twice for each
`FindString` message. Fix this by early returning before setting selection in `PDFPlugin::findString()`
when the `DoNotSetSelection` flag is set.

* Source/WebKit/WebProcess/Plugins/PDF/PDFPlugin.mm:
(WebKit::PDFPlugin::findString):

Canonical link: https://commits.webkit.org/274352@main




More information about the webkit-changes mailing list