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

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

Completed in 132 milliseconds