Searched defs:HTMLMapElement (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DHTMLMapElement.h34 class HTMLMapElement : public HTMLElement { class in namespace:WebCore
36 static PassRefPtr<HTMLMapElement> create(Document*);
37 static PassRefPtr<HTMLMapElement> create(const QualifiedName&, Document*);
38 virtual ~HTMLMapElement();
48 HTMLMapElement(const QualifiedName&, Document*);
H A DHTMLMapElement.cpp23 #include "HTMLMapElement.h"
41 HTMLMapElement::HTMLMapElement(const QualifiedName& tagName, Document* document) function in class:WebCore::HTMLMapElement
47 PassRefPtr<HTMLMapElement> HTMLMapElement::create(Document* document)
49 return adoptRef(new HTMLMapElement(mapTag, document));
52 PassRefPtr<HTMLMapElement> HTMLMapElement::create(const QualifiedName& tagName, Document* document)
54 return adoptRef(new HTMLMapElement(tagName, document));
57 HTMLMapElement
[all...]

Completed in 248 milliseconds