Changeset 24771 in webkit
- Timestamp:
- Jul 29, 2007, 11:33:54 PM (18 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r24767 r24771 1 2007-07-29 Tristan O'Tierney <tristan@apple.com> 2 3 Reviewed by Oliver Hunt. 4 5 <rdar://problem/5369282> REGRESSION: DOMHTMLInput throwing exception due to missing _isEdited method 6 7 * bindings/objc/DOMHTML.mm: 8 (-[DOMHTMLInputElement _isEdited]): 9 (-[DOMHTMLTextAreaElement _isEdited]): 10 * bindings/objc/DOMPrivate.h: 11 Renamed _isUserEdited to _isEdited. 12 1 13 2007-07-29 Adam Treat <treat@kde.org> 2 14 -
trunk/WebCore/bindings/objc/DOMHTML.mm
r24652 r24771 167 167 168 168 @implementation DOMHTMLInputElement (FormPromptAdditions) 169 - (BOOL)_is UserEdited169 - (BOOL)_isEdited 170 170 { 171 171 WebCore::RenderObject *renderer = [self _node]->renderer(); … … 178 178 179 179 @implementation DOMHTMLTextAreaElement (FormPromptAdditions) 180 - (BOOL)_is UserEdited180 - (BOOL)_isEdited 181 181 { 182 182 WebCore::RenderObject *renderer = [self _node]->renderer(); -
trunk/WebCore/bindings/objc/DOMPrivate.h
r24652 r24771 115 115 // or javascript 116 116 @interface DOMHTMLInputElement (FormPromptAdditions) 117 - (BOOL)_is UserEdited;117 - (BOOL)_isEdited; 118 118 @end 119 119 120 120 @interface DOMHTMLTextAreaElement (FormPromptAdditions) 121 - (BOOL)_is UserEdited;121 - (BOOL)_isEdited; 122 122 @end 123 123
Note:
See TracChangeset
for help on using the changeset viewer.