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

  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTElement.cpp 93 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::spanTag.localName(), document);
98 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::iTag.localName(), document);
101 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::bTag.localName(), document);
104 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::uTag.localName(), document);
107 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::rubyTag.localName(), document);
110 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::rtTag.localName(), document);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLViewer.js 37 var html = createHTMLElement('html');
38 var head = createHTMLElement('head');
40 var style = createHTMLElement('style');
43 var body = createHTMLElement('body');
45 var sourceXML = createHTMLElement('div');
57 var header = createHTMLElement('div');
60 var headerSpan = createHTMLElement('span');
63 header.appendChild(createHTMLElement('br'));
65 tree = createHTMLElement('div');
230 function createHTMLElement(elementName
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
ReplaceNodeWithSpanCommand.cpp 73 m_spanElement = createHTMLElement(m_elementToReplace->document(), spanTag);
htmlediting.h 209 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(Document&, const QualifiedName&);
210 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(Document&, const AtomicString&);
ApplyStyleCommand.cpp 115 return createHTMLElement(document, fontTag);
120 return createHTMLElement(document, spanTag);
    [all...]
InsertListCommand.cpp 225 RefPtrWillBeRawPtr<HTMLElement> newList = createHTMLElement(document(), listTag);
359 listElement = createHTMLElement(document(), listTag);
htmlediting.cpp 818 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(Document& document, const QualifiedName& name)
820 return createHTMLElement(document, name.localName());
823 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(Document& document, const AtomicString& tagName)
825 return HTMLElementFactory::createHTMLElement(tagName, document, 0, false);
    [all...]
ApplyBlockElementCommand.cpp 285 RefPtrWillBeRawPtr<Element> element = createHTMLElement(document(), m_tagName);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp 594 m_head = HTMLStackItem::create(createHTMLElement(token), token);
602 RefPtrWillBeRawPtr<Element> body = createHTMLElement(token);
611 RefPtrWillBeRawPtr<Element> element = createHTMLElement(token);
621 RefPtrWillBeRawPtr<Element> element = createHTMLElement(token);
632 attachLater(currentNode(), createHTMLElement(token), true);
746 PassRefPtrWillBeRawPtr<Element> HTMLConstructionSite::createHTMLElement(AtomicHTMLToken* token)
755 RefPtrWillBeRawPtr<Element> element = HTMLElementFactory::createHTMLElement(token->name(), document, form, true);
    [all...]
HTMLConstructionSite.h 228 PassRefPtrWillBeRawPtr<Element> createHTMLElement(AtomicHTMLToken*);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp 749 return HTMLElementFactory::createHTMLElement(isHTMLDocument() ? name.lower() : name, *this, 0, false);
    [all...]

Completed in 236 milliseconds