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

/external/webkit/Source/WebCore/html/
H A DHTMLHRElement.h30 class HTMLHRElement : public HTMLElement { class in namespace:WebCore
32 static PassRefPtr<HTMLHRElement> create(Document*);
33 static PassRefPtr<HTMLHRElement> create(const QualifiedName&, Document*);
36 HTMLHRElement(const QualifiedName&, Document*);
H A DHTMLHRElement.cpp24 #include "HTMLHRElement.h"
35 HTMLHRElement::HTMLHRElement(const QualifiedName& tagName, Document* document) function in class:WebCore::HTMLHRElement
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
[all...]

Completed in 145 milliseconds