Home
last modified time | relevance | path

Searched refs:newBody (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTableElement.cpp216 … RefPtr<HTMLTableSectionElement> newBody = HTMLTableSectionElement::create(tbodyTag, document()); in insertRow() local
218 newBody->appendChild(newRow, exceptionState); in insertRow()
219 appendChild(newBody.release(), exceptionState); in insertRow()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp2225 RefPtr<HTMLElement> newBody = prpNewBody; in setBody() local
2227 if (!newBody || !documentElement()) { in setBody()
2232 if (!newBody->hasTagName(bodyTag) && !newBody->hasTagName(framesetTag)) { in setBody()
2238 if (oldBody == newBody) in setBody()
2242 documentElement()->replaceChild(newBody.release(), oldBody, exceptionState); in setBody()
2244 documentElement()->appendChild(newBody.release(), exceptionState); in setBody()