Bug 210294

Summary: Add an API test for <https://trac.webkit.org/r259766>
Product: WebKit Reporter: Wenson Hsieh <wenson_hsieh>
Component: HTML EditingAssignee: Wenson Hsieh <wenson_hsieh>
Status: RESOLVED FIXED    
Severity: Normal CC: bdakin, ews-watchlist, mifenton, rniwa, sihui_liu, thorton, webkit-bug-importer, wenson_hsieh
Priority: P2 Keywords: DoNotImportToRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
See Also: https://bugs.webkit.org/show_bug.cgi?id=210215
Attachments:
Description Flags
Patch
none
Fix a minor typo none

Description Wenson Hsieh 2020-04-09 11:34:27 PDT
Followup to <https://webkit.org/b/210215>.
Comment 1 Wenson Hsieh 2020-04-09 12:02:39 PDT Comment hidden (obsolete)
Comment 2 Tim Horton 2020-04-09 12:04:21 PDT
Comment on attachment 395985 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=395985&action=review

> Source/WebCore/editing/TextManipulationController.cpp:379
> +            if (start.isNull() || end.isNull())

I think this part landed already?
Comment 3 Wenson Hsieh 2020-04-09 12:07:10 PDT
Thanks for the review!

(In reply to Tim Horton from comment #2)
> Comment on attachment 395985 [details]
> Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=395985&action=review
> 
> > Source/WebCore/editing/TextManipulationController.cpp:379
> > +            if (start.isNull() || end.isNull())
> 
> I think this part landed already?

Ah, this was a different null check (at the top of TextManipulationController::observeParagraphs).

Technically, the early `continue;` here obviates the need for the early return in TextManipulationController::observeParagraphs. I considered reverting the other early return, but since there is at least one other call site of observeParagraphs (and possibly more in the future), I don’t think it’s a bad idea to keep observeParagraphs robust against null positions.
Comment 4 Wenson Hsieh 2020-04-09 12:09:36 PDT
Created attachment 395987 [details]
Fix a minor typo
Comment 5 EWS 2020-04-09 13:16:43 PDT
Committed r259819: <https://trac.webkit.org/changeset/259819>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 395987 [details].