diff options
Diffstat (limited to 'WebCore/wml/WMLOptionElement.cpp')
-rw-r--r-- | WebCore/wml/WMLOptionElement.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/WebCore/wml/WMLOptionElement.cpp b/WebCore/wml/WMLOptionElement.cpp index 61fa762..ac41a06 100644 --- a/WebCore/wml/WMLOptionElement.cpp +++ b/WebCore/wml/WMLOptionElement.cpp @@ -170,6 +170,12 @@ void WMLOptionElement::handleIntrinsicEventIfNeeded() eventHandler->triggerIntrinsicEvent(WMLIntrinsicEventOnPick); } +bool WMLOptionElement::disabled() const +{ + /* Dummy implementation, as disabled() is pure virtual in OptionElement class */ + return false; +} + } #endif |