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

/external/webkit/Source/WebCore/html/
H A DHTMLTableElement.cpp212 RefPtr<HTMLTableSectionElement> newBody = HTMLTableSectionElement::create(tbodyTag, document()); local
214 newBody->appendChild(newRow, ec);
215 appendChild(newBody.release(), ec);
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp2007 void Document::setBody(PassRefPtr<HTMLElement> newBody, ExceptionCode& ec) argument
2011 if (!newBody || !documentElement() || !newBody->hasTagName(bodyTag)) {
2016 if (newBody->document() && newBody->document() != this) {
2017 RefPtr<Node> node = importNode(newBody.get(), true, ec);
2021 newBody = toHTMLElement(node.get());
2026 documentElement()->appendChild(newBody, ec);
2028 documentElement()->replaceChild(newBody, b, ec);

Completed in 130 milliseconds