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

  /external/webkit/Source/WebCore/html/
HTMLHRElement.h 30 class HTMLHRElement : public HTMLElement {
32 static PassRefPtr<HTMLHRElement> create(Document*);
33 static PassRefPtr<HTMLHRElement> create(const QualifiedName&, Document*);
36 HTMLHRElement(const QualifiedName&, Document*);
HTMLHRElement.cpp 24 #include "HTMLHRElement.h"
35 HTMLHRElement::HTMLHRElement(const QualifiedName& tagName, Document* document)
41 PassRefPtr<HTMLHRElement> HTMLHRElement::create(Document* document)
43 return adoptRef(new HTMLHRElement(hrTag, document));
46 PassRefPtr<HTMLHRElement> HTMLHRElement::create(const QualifiedName& tagName, Document* document)
48 return adoptRef(new HTMLHRElement(tagName, document));
51 bool HTMLHRElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) cons
    [all...]

Completed in 112 milliseconds