WebKit Bugzilla
Attachment 339429 Details for
Bug 185260
: Some fields are not identified as [WKWebProcessPlugInNodeHandle isTextField]
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed fix. Instead of of using HTMLInputElement::isText, use HTMLInputElement::isTextElement.
fix.patch (text/plain), 721 bytes, created by
Richard Houle
on 2018-05-03 11:02:40 PDT
(
hide
)
Description:
Proposed fix. Instead of of using HTMLInputElement::isText, use HTMLInputElement::isTextElement.
Filename:
MIME Type:
Creator:
Richard Houle
Created:
2018-05-03 11:02:40 PDT
Size:
721 bytes
patch
obsolete
>diff --git a/Source/WebKit/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp b/Source/WebKit/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp >index 117cc21070c..b7f74396e7d 100644 >--- a/Source/WebKit/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp >+++ b/Source/WebKit/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp >@@ -334,7 +334,7 @@ bool InjectedBundleNodeHandle::isTextField() const > if (!is<HTMLInputElement>(m_node)) > return false; > >- return downcast<HTMLInputElement>(m_node.get()).isText(); >+ return downcast<HTMLInputElement>(m_node.get()).isTextField(); > } > > RefPtr<InjectedBundleNodeHandle> InjectedBundleNodeHandle::htmlTableCellElementCellAbove()
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 185260
:
339429
|
339442
|
339516
|
339828
|
339907
|
340004