Index: Source/WebCore/html/HTMLOptGroupElement.h |
=================================================================== |
--- Source/WebCore/html/HTMLOptGroupElement.h (revision 119185) |
+++ Source/WebCore/html/HTMLOptGroupElement.h (working copy) |
@@ -34,6 +34,7 @@ |
public: |
static PassRefPtr<HTMLOptGroupElement> create(const QualifiedName&, Document*); |
+ virtual bool disabled() const OVERRIDE; |
HTMLSelectElement* ownerSelectElement() const; |
String groupLabelText() const; |
@@ -44,6 +45,7 @@ |
virtual const AtomicString& formControlType() const; |
virtual bool supportsFocus() const; |
virtual bool isFocusable() const; |
+ virtual bool isEnabledFormControl() const OVERRIDE { return !disabled(); } |
virtual void parseAttribute(Attribute*) OVERRIDE; |
virtual bool rendererIsNeeded(const NodeRenderingContext&) { return false; } |
virtual void attach(); |