diff options
Diffstat (limited to 'WebCore/wml/WMLOnEventElement.cpp')
-rw-r--r-- | WebCore/wml/WMLOnEventElement.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/wml/WMLOnEventElement.cpp b/WebCore/wml/WMLOnEventElement.cpp index 34518c3..ad6684b 100644 --- a/WebCore/wml/WMLOnEventElement.cpp +++ b/WebCore/wml/WMLOnEventElement.cpp @@ -41,6 +41,11 @@ WMLOnEventElement::WMLOnEventElement(const QualifiedName& tagName, Document* doc { } +PassRefPtr<WMLOnEventElement> WMLOnEventElement::create(const QualifiedName& tagName, Document* document) +{ + return adoptRef(new WMLOnEventElement(tagName, document)); +} + void WMLOnEventElement::parseMappedAttribute(Attribute* attr) { if (attr->name() == HTMLNames::typeAttr) { |