Bug 26607

Summary: Implement IDL interface for datagrid rows
Product: WebKit Reporter: Dave Hyatt <hyatt>
Component: FormsAssignee: Dave Hyatt <hyatt>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Mac   
OS: OS X 10.5   
Bug Depends on:    
Bug Blocks: 26546    
Attachments:
Description Flags
Patch sam: review+

Dave Hyatt
Reported 2009-06-22 09:21:27 PDT
Interface for row elements.
Attachments
Patch (25.31 KB, patch)
2009-06-22 09:22 PDT, Dave Hyatt
sam: review+
Dave Hyatt
Comment 1 2009-06-22 09:22:22 PDT
Sam Weinig
Comment 2 2009-06-22 09:28:19 PDT
Comment on attachment 31650 [details] Patch > Index: ChangeLog > =================================================================== > --- ChangeLog (revision 44935) > +++ ChangeLog (working copy) > @@ -1,3 +1,38 @@ > +2009-06-22 David Hyatt <hyatt@apple.com> > + > + Reviewed by NOBODY (OOPS!). > + > + WARNING: NO TEST CASES ADDED OR CHANGED Some changelogy goodness please. > + > +#ifndef HTMLDataGridRowElement_h > +#define HTMLDataGridRowElement_h > + > +#include "HTMLElement.h" > + > +namespace WebCore { > + > +class HTMLDataGridRowElement : public HTMLElement > +{ { should go on the previous line. > +public: > + HTMLDataGridRowElement(const QualifiedName&, Document*); > + > + virtual int tagPriority() const { return 2; } // Same as <option>s. > + > + bool selected() const; > + void setSelected(bool); > + > + bool focused() const; > + void setFocused(bool); > +}; > + > +} //namespace should be // namespace WebCore > + > +#endif We like to add #endif // HTMLDataGridRowElement_h r=me with these cleanups.
Dave Hyatt
Comment 3 2009-06-22 09:34:35 PDT
Fixed in r44937.
Note You need to log in before you can comment on or make changes to this bug.