HomeSort by relevance Sort by last modified time
    Searched refs:createHTMLElement (Results 1 - 10 of 10) 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/editing/
ReplaceNodeWithSpanCommand.cpp 74 m_spanElement = toHTMLSpanElement(createHTMLElement(m_elementToReplace->document(), spanTag).get());
htmlediting.h 221 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(Document&, const QualifiedName&);
222 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(Document&, const AtomicString&);
ApplyStyleCommand.cpp 118 return toHTMLFontElement(createHTMLElement(document, fontTag).get());
123 return toHTMLSpanElement(createHTMLElement(document, spanTag).get());
    [all...]
InsertListCommand.cpp 231 RefPtrWillBeRawPtr<HTMLElement> newList = createHTMLElement(document(), listTag);
366 listElement = createHTMLElement(document(), listTag);
ApplyBlockElementCommand.cpp 286 RefPtrWillBeRawPtr<HTMLElement> element = createHTMLElement(document(), m_tagName);
htmlediting.cpp 841 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(Document& document, const QualifiedName& name)
843 return createHTMLElement(document, name.localName());
846 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(Document& document, const AtomicString& tagName)
848 return HTMLElementFactory::createHTMLElement(tagName, document, 0, false);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp 600 m_head = HTMLStackItem::create(createHTMLElement(token), token);
608 RefPtrWillBeRawPtr<HTMLElement> body = createHTMLElement(token);
617 RefPtrWillBeRawPtr<HTMLElement> element = createHTMLElement(token);
627 RefPtrWillBeRawPtr<HTMLElement> element = createHTMLElement(token);
638 attachLater(currentNode(), createHTMLElement(token), true);
752 PassRefPtrWillBeRawPtr<HTMLElement> HTMLConstructionSite::createHTMLElement(AtomicHTMLToken* token)
761 RefPtrWillBeRawPtr<HTMLElement> element = HTMLElementFactory::createHTMLElement(token->name(), document, form, true)
    [all...]
HTMLConstructionSite.h 236 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(AtomicHTMLToken*);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp 773 return HTMLElementFactory::createHTMLElement(convertLocalName(name), *this, 0, false);
    [all...]

Completed in 327 milliseconds