Searched refs:newBody (Results 1 – 8 of 8) sorted by relevance
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
D | selfxhtml.js | 546 var newBody = document.createElementNS(xhtmlNS, "body"); 550 newBody.appendChild(newTable); 580 oldBody.parentNode.replaceChild(newBody, oldBody);
|
/external/webkit/LayoutTests/dom/xhtml/level2/events/ |
D | selfxhtml.js | 546 var newBody = document.createElementNS(xhtmlNS, "body"); 550 newBody.appendChild(newTable); 580 oldBody.parentNode.replaceChild(newBody, oldBody);
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
D | selfxhtml.js | 546 var newBody = document.createElementNS(xhtmlNS, "body"); 550 newBody.appendChild(newTable); 587 oldBody.parentNode.replaceChild(newBody, oldBody);
|
/external/webkit/LayoutTests/dom/xhtml/level2/core/ |
D | selfxhtml.js | 546 var newBody = document.createElementNS(xhtmlNS, "body"); 550 newBody.appendChild(newTable); 580 oldBody.parentNode.replaceChild(newBody, oldBody);
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
D | selfxhtml.js | 546 var newBody = document.createElementNS(xhtmlNS, "body"); 550 newBody.appendChild(newTable); 580 oldBody.parentNode.replaceChild(newBody, oldBody);
|
/external/webkit/Source/WebCore/html/ |
D | HTMLTableElement.cpp | 212 … RefPtr<HTMLTableSectionElement> newBody = HTMLTableSectionElement::create(tbodyTag, document()); in insertRow() local 214 newBody->appendChild(newRow, ec); in insertRow() 215 appendChild(newBody.release(), ec); in insertRow()
|
/external/webkit/Source/WebCore/dom/ |
D | Document.cpp | 2012 void Document::setBody(PassRefPtr<HTMLElement> newBody, ExceptionCode& ec) in setBody() argument 2016 if (!newBody || !documentElement() || !newBody->hasTagName(bodyTag)) { in setBody() 2021 if (newBody->document() && newBody->document() != this) { in setBody() 2022 RefPtr<Node> node = importNode(newBody.get(), true, ec); in setBody() 2026 newBody = toHTMLElement(node.get()); in setBody() 2031 documentElement()->appendChild(newBody, ec); in setBody() 2033 documentElement()->replaceChild(newBody, b, ec); in setBody()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog | 32257 … Web Inspector: remove unnecessary newBody output parameter from editScriptSource protocol method.
|