Home | History | Annotate | Download | only in core

Lines Matching refs:textContent

80 	Using setTextContent on this DocumentType node, attempt to set the textContent of this
81 DocumentType node to textContent. Retreive the textContent and verify if it is null.
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
92 var textContent;
101 docType.textContent = "textContent";
103 textContent = docType.textContent;
105 assertNull("nodesettextcontent03",textContent);