diff options
Diffstat (limited to 'WebCore/wml/WMLAnchorElement.cpp')
-rw-r--r-- | WebCore/wml/WMLAnchorElement.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/wml/WMLAnchorElement.cpp b/WebCore/wml/WMLAnchorElement.cpp index ac9c8f2..5b842bc 100644 --- a/WebCore/wml/WMLAnchorElement.cpp +++ b/WebCore/wml/WMLAnchorElement.cpp @@ -40,6 +40,11 @@ WMLAnchorElement::WMLAnchorElement(const QualifiedName& tagName, Document* doc) setIsLink(); } +PassRefPtr<WMLAnchorElement> WMLAnchorElement::create(const QualifiedName& tagName, Document* document) +{ + return adoptRef(new WMLAnchorElement(tagName, document)); +} + WMLAnchorElement::~WMLAnchorElement() { } |