HomeSort by relevance Sort by last modified time
    Searched defs:HTMLMapElement (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/html/
HTMLMapElement.h 34 class HTMLMapElement : public HTMLElement {
36 static PassRefPtr<HTMLMapElement> create(Document*);
37 static PassRefPtr<HTMLMapElement> create(const QualifiedName&, Document*);
38 virtual ~HTMLMapElement();
48 HTMLMapElement(const QualifiedName&, Document*);
HTMLMapElement.cpp 23 #include "HTMLMapElement.h"
41 HTMLMapElement::HTMLMapElement(const QualifiedName& tagName, Document* document)
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::~HTMLMapElement(
    [all...]

Completed in 406 milliseconds