RESOLVED FIXED 56474
Add WebKit2 API to figure out if an input or textarea was edited
https://bugs.webkit.org/show_bug.cgi?id=56474
Summary Add WebKit2 API to figure out if an input or textarea was edited
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.