Bug 77186

Summary: [Chromium] REGRESSION(r87067): WebFrame::setFindEndstateFocusAndSelection() doesn't set the selection for <input> and <textarea>
Product: WebKit Reporter: Kent Tamura <tkent>
Component: HTML EditingAssignee: Kent Tamura <tkent>
Status: RESOLVED FIXED    
Severity: Normal CC: dglazkov, dominicc, hayato, morrita
Priority: P1    
Version: 528+ (Nightly build)   
Hardware: Other   
OS: All   
Attachments:
Description Flags
Patch none

Comment 1 Kent Tamura 2012-01-26 22:31:52 PST
Created attachment 124265 [details]
Patch
Comment 2 Hajime Morrita 2012-01-29 20:04:31 PST
Comment on attachment 124265 [details]
Patch

Looks OK. But having if (host->hasTagName(HTMLNames::inputTag) || host->hasTagName(HTMLNames::textareaTag)) looks cryptic a bit. Hopefully we can give some intention revealing name for this kind of check.
Comment 3 Kent Tamura 2012-01-29 20:13:41 PST
(In reply to comment #2)
> Looks OK. But having if (host->hasTagName(HTMLNames::inputTag) || host->hasTagName(HTMLNames::textareaTag)) looks cryptic a bit. Hopefully we can give some intention revealing name for this kind of check.

How about changing it to "if (host->isFocusable())" ?  Does it make sense for non-builtin shadow DOM components?
Comment 4 Hayato Ito 2012-01-29 21:29:28 PST
(In reply to comment #3)
> (In reply to comment #2)
> > Looks OK. But having if (host->hasTagName(HTMLNames::inputTag) || host->hasTagName(HTMLNames::textareaTag)) looks cryptic a bit. Hopefully we can give some intention revealing name for this kind of check.
> 
> How about changing it to "if (host->isFocusable())" ?  Does it make sense for non-builtin shadow DOM components?

I don't think it make sense for non-buitin shadow DOM components. I cannot see a clear reason to return host instead of an internal focusable element in case of non-builtin shadow DOM components.
Comment 5 Kent Tamura 2012-01-29 21:36:19 PST
ok, I'm landing the patch as is for now.
Comment 6 WebKit Review Bot 2012-01-29 23:23:15 PST
Comment on attachment 124265 [details]
Patch

Clearing flags on attachment: 124265

Committed r106216: <http://trac.webkit.org/changeset/106216>