Bug 56474

Summary: Add WebKit2 API to figure out if an input or textarea was edited
Product: WebKit Reporter: Sam Weinig <sam>
Component: New BugsAssignee: Sam Weinig <sam>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Other   
OS: OS X 10.5   
Attachments:
Description Flags
Patch aroben: review+

Sam Weinig
Reported 2011-03-16 11:22:00 PDT
Add WebKit2 API to figure out if an input or textarea was edited
Attachments
Patch (11.55 KB, patch)
2011-03-16 11:29 PDT, Sam Weinig
aroben: review+
Sam Weinig
Comment 1 2011-03-16 11:29:56 PDT
Adam Roben (:aroben)
Comment 2 2011-03-16 11:33:14 PDT
Comment on attachment 85946 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=85946&action=review > Source/WebCore/html/HTMLTextAreaElement.cpp:428 > +bool HTMLTextAreaElement::lastChangeWasUserEdit() const > +{ > + if (!renderer()) > + return false; > + return toRenderTextControl(renderer())->lastChangeWasUserEdit(); Can someone use -webkit-appearance to make the renderer not a RenderTextControl?
Sam Weinig
Comment 3 2011-03-16 11:37:56 PDT
Landed in r81263.
Note You need to log in before you can comment on or make changes to this bug.