HomeSort by relevance Sort by last modified time
    Searched refs:createHTMLElement (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/xml/
XMLViewer.js 35 var html = createHTMLElement('html');
36 var head = createHTMLElement('head');
38 var style = createHTMLElement('style');
41 var body = createHTMLElement('body');
43 var sourceXML = createHTMLElement('div');
55 var header = createHTMLElement('div');
58 var headerSpan = createHTMLElement('span');
61 header.appendChild(createHTMLElement('br'));
63 var tree = createHTMLElement('div');
233 function createHTMLElement(elementName
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLConstructionSite.cpp 266 m_head = attachToCurrent(createHTMLElement(token));
273 m_openElements.pushHTMLBodyElement(attachToCurrent(createHTMLElement(token)));
278 RefPtr<Element> element = createHTMLElement(token);
290 m_openElements.push(attachToCurrent(createHTMLElement(token)));
296 RefPtr<Element> element = attachToCurrent(createHTMLElement(token));
373 PassRefPtr<Element> HTMLConstructionSite::createHTMLElement(AtomicHTMLToken& token)
379 RefPtr<Element> element = HTMLElementFactory::createHTMLElement(tagName, currentNode()->document(), form(), true);
420 return createHTMLElement(fakeToken);
HTMLConstructionSite.h 71 PassRefPtr<Element> createHTMLElement(AtomicHTMLToken&);
  /external/webkit/Source/WebCore/editing/
ReplaceNodeWithSpanCommand.cpp 77 m_spanElement = createHTMLElement(m_elementToReplace->document(), spanTag);
htmlediting.h 188 PassRefPtr<HTMLElement> createHTMLElement(Document*, const QualifiedName&);
189 PassRefPtr<HTMLElement> createHTMLElement(Document*, const AtomicString&);
ApplyStyleCommand.cpp 109 RefPtr<Element> fontNode = createHTMLElement(document, fontTag);
116 RefPtr<HTMLElement> styleElement = createHTMLElement(document, spanTag);
    [all...]
InsertListCommand.cpp 217 RefPtr<HTMLElement> newList = createHTMLElement(document(), listTag);
351 listElement = createHTMLElement(document(), listTag);
htmlediting.cpp 863 PassRefPtr<HTMLElement> createHTMLElement(Document* document, const QualifiedName& name)
865 return HTMLElementFactory::createHTMLElement(name, document, 0, false);
868 PassRefPtr<HTMLElement> createHTMLElement(Document* document, const AtomicString& tagName)
870 return createHTMLElement(document, QualifiedName(nullAtom, tagName, xhtmlNamespaceURI));
    [all...]
ApplyBlockElementCommand.cpp 278 RefPtr<Element> element = createHTMLElement(document(), m_tagName);
  /external/webkit/Source/WebCore/html/
HTMLDocument.cpp 294 return HTMLElementFactory::createHTMLElement(QualifiedName(nullAtom, name.lower(), xhtmlNamespaceURI), this, 0, false);
  /external/webkit/Source/WebCore/dom/
Document.cpp 718 return HTMLElementFactory::createHTMLElement(QualifiedName(nullAtom, name, xhtmlNamespaceURI), this, 0, false);
946 e = HTMLElementFactory::createHTMLElement(qName, this, 0, createdByParser);
    [all...]

Completed in 229 milliseconds