Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTableElement.cpp203 …RefPtrWillBeRawPtr<HTMLTableSectionElement> newBody = HTMLTableSectionElement::create(tbodyTag, do… in insertRow() local
205 newBody->appendChild(newRow, exceptionState); in insertRow()
206 appendChild(newBody.release(), exceptionState); in insertRow()
/external/chromium_org/third_party/readability/js/
Dreadability.js395 var newBody = document.createElement('body');
396 readability.moveNodeInnards(bestFrame.contentWindow.document.body, newBody);
397 newBody.style.overflow = 'scroll';
398 document.body = newBody;
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp2403 RefPtrWillBeRawPtr<HTMLElement> newBody = prpNewBody; in setBody() local
2405 if (!newBody) { in setBody()
2414 if (!isHTMLBodyElement(*newBody) && !isHTMLFrameSetElement(*newBody)) { in setBody()
2415 …OMException(HierarchyRequestError, "The new body element is of type '" + newBody->tagName() + "'. … in setBody()
2420 if (oldBody == newBody) in setBody()
2424 documentElement()->replaceChild(newBody.release(), oldBody, exceptionState); in setBody()
2426 documentElement()->appendChild(newBody.release(), exceptionState); in setBody()