Searched refs:textContent (Results 1 - 25 of 241) sorted by relevance

12345678910

/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodesettextcontent03.js80 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);
[all...]
H A Dnodegettextcontent01.js84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
90 var textContent;
97 textContent = doc.textContent;
99 assertNull("nodegettextcontent01",textContent);
H A Dnodegettextcontent03.js84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
92 var textContent;
101 textContent = docType.textContent;
103 assertNull("nodegettextcontent03",textContent);
H A Dnodegettextcontent13.js85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
93 var textContent;
102 textContent = elem.textContent;
104 assertEquals("nodegettextcontent13","Martha Raynolds\nThis is a CDATASection with EntityReference number 2 &ent2;\nThis is an adjacent CDATASection with a reference to a tab &tab;",textContent);
H A Dnodegettextcontent14.js84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
92 var textContent;
101 textContent = elem.textContent;
103 assertEquals("nodegettextcontent13","\n EMP0003\n Roger\n Jones\n Department Manager\n 100,000\n Element data\n PO Box 27 Irving, texas 98553\n ",textContent);
H A Dnodegettextcontent19.js80 Checks that element content whitespace is not added to textContent. Determination
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
93 var textContent;
102 textContent = elem.textContent;
104 assertEquals("textContent","bar",textContent);
H A Dnodesettextcontent04.js80 Using setTextContent on this DocumentType node, attempt to set the textContent of a
81 Notation 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
94 var textContent;
106 notation1.textContent = "textContent";
108 textContent = notation1.textContent;
110 assertNull("nodesettextcontent04",textContent);
[all...]
H A Dnodesettextcontent05.js81 the textContent and verify if it is was set to NA.
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
94 var textContent;
104 attr.textContent = "NA";
106 textContent = attr.textContent;
108 assertEquals("nodesettextcontent05","NA",textContent);
H A Dnodesettextcontent06.js81 the textContent and verify if it is was set to NA.
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
95 var textContent;
105 attr.textContent = "NA";
107 textContent = attr.textContent;
109 assertEquals("nodesettextcontent06","NA",textContent);
H A Dnodesettextcontent07.js81 Retreive the textContent and verify if it is was set to Text.
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
94 var textContent;
105 txt.textContent = "Text";
107 textContent = txt.textContent;
109 assertEquals("nodegettextcontent10","Text",textContent);
H A Dnodesettextcontent08.js81 Retreive the textContent and verify if it is was set to PID.
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
94 var textContent;
105 pi.textContent = "PID";
107 textContent = pi.textContent;
109 assertEquals("nodesettextcontent08","PID",textContent);
H A Dnodegettextcontent02.js84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
92 var textContent;
112 textContent = newDoc.textContent;
114 assertNull("nodegettextcontent02",textContent);
H A Dnodegettextcontent04.js84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
92 var textContent;
111 textContent = docType.textContent;
113 assertNull("nodegettextcontent04",textContent);
H A Dnodegettextcontent05.js84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
93 var textContent;
105 textContent = docType.textContent;
107 assertNull("nodegettextcontent05",textContent);
H A Dnodegettextcontent06.js85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
94 var textContent;
104 textContent = attr.textContent;
106 assertEquals("nodegettextcontent06","rtl",textContent);
H A Dnodegettextcontent07.js83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
92 var textContent;
103 textContent = attr.textContent;
105 assertEquals("nodegettextcontent07","en-US",textContent);
H A Dnodegettextcontent08.js83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
94 var textContent;
105 textContent = attr.textContent;
107 assertEquals("nodegettextcontent08","",textContent);
H A Dnodegettextcontent09.js83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
92 var textContent;
103 textContent = txt.textContent;
105 assertEquals("nodegettextcontent09","Replacement Text",textContent);
H A Dnodegettextcontent10.js85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
94 var textContent;
105 textContent = txt.textContent;
107 assertEquals("nodegettextcontent10","EMP0001",textContent);
H A Dnodegettextcontent11.js85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
94 var textContent;
105 textContent = cdata.textContent;
107 assertEquals("nodegettextcontent11","This is an adjacent CDATASection with a reference to a tab &tab;",textContent);
H A Dnodegettextcontent12.js83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
92 var textContent;
103 textContent = comment.textContent;
105 assertEquals("nodegettextcontent12","Comment",textContent);
H A Dnodegettextcontent17.js83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
91 var textContent;
103 textContent = entRef.textContent;
105 assertEquals("nodegettextcontent17","β",textContent);
H A Dnodegettextcontent18.js83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
92 var textContent;
104 textContent = entity.textContent;
106 assertEquals("nodegettextcontent18","δ",textContent);
H A Dnodesettextcontent10.js83 Retreive the textContent and verify if it is was set to ELEMENT.
87 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-textContent
99 var textContent;
118 elem.textContent = "ELEMENT";
120 textContent = elem.textContent;
122 assertEquals("nodesettextcontent10","ELEMENT",textContent);
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dlist_item.js23 return this.textContent;
26 this.textContent = label;

Completed in 2576 milliseconds

12345678910