Home
last modified time | relevance | path

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

/external/webkit/LayoutTests/dom/xhtml/level1/core/
Dselfxhtml.js546 var newBody = document.createElementNS(xhtmlNS, "body");
550 newBody.appendChild(newTable);
580 oldBody.parentNode.replaceChild(newBody, oldBody);
/external/webkit/LayoutTests/dom/xhtml/level2/events/
Dselfxhtml.js546 var newBody = document.createElementNS(xhtmlNS, "body");
550 newBody.appendChild(newTable);
580 oldBody.parentNode.replaceChild(newBody, oldBody);
/external/webkit/LayoutTests/dom/xhtml/level2/html/
Dselfxhtml.js546 var newBody = document.createElementNS(xhtmlNS, "body");
550 newBody.appendChild(newTable);
587 oldBody.parentNode.replaceChild(newBody, oldBody);
/external/webkit/LayoutTests/dom/xhtml/level2/core/
Dselfxhtml.js546 var newBody = document.createElementNS(xhtmlNS, "body");
550 newBody.appendChild(newTable);
580 oldBody.parentNode.replaceChild(newBody, oldBody);
/external/webkit/LayoutTests/dom/xhtml/level3/core/
Dselfxhtml.js546 var newBody = document.createElementNS(xhtmlNS, "body");
550 newBody.appendChild(newTable);
580 oldBody.parentNode.replaceChild(newBody, oldBody);
/external/webkit/Source/WebCore/html/
DHTMLTableElement.cpp212 … 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/
DDocument.cpp2012 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/
DChangeLog32257 … Web Inspector: remove unnecessary newBody output parameter from editScriptSource protocol method.