OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:textnode
(Results
1 - 25
of
203
) sorted by null
1
2
3
4
5
6
7
8
9
/external/webkit/LayoutTests/fast/dom/Selection/script-tests/
collapseToX-empty-selection.js
4
var
textNode
= document.createTextNode("abcdef");
5
document.body.appendChild(
textNode
);
10
sel.selectAllChildren(
textNode
);
15
document.body.removeChild(
textNode
);
getRangeAt.js
5
var
textNode
= document.createTextNode("asd");
6
div.appendChild(
textNode
);
9
sel.collapse(
textNode
, 0);
12
var result = range.comparePoint(
textNode
, 0);
/external/webkit/LayoutTests/dom/html/level1/core/
hc_attrchildnodes2.js
93
var
textNode
;
109
textNode
= doc.createTextNode("terday");
110
retval = titleAttr.appendChild(
textNode
);
112
textNode
= childNodes.item(0);
113
value =
textNode
.nodeValue;
116
textNode
= childNodes.item(1);
117
value =
textNode
.nodeValue;
120
textNode
= childNodes.item(2);
121
assertNull("thirdItemIsNull",
textNode
);
hc_attrfirstchild.js
94
var
textNode
;
107
textNode
= titleAttr.firstChild;
109
assertNotNull("textNodeNotNull",
textNode
);
110
value =
textNode
.nodeValue;
113
otherChild =
textNode
.nextSibling;
116
otherChild =
textNode
.previousSibling;
hc_attrlastchild.js
94
var
textNode
;
107
textNode
= titleAttr.firstChild;
109
assertNotNull("textNodeNotNull",
textNode
);
110
value =
textNode
.nodeValue;
113
otherChild =
textNode
.nextSibling;
116
otherChild =
textNode
.previousSibling;
hc_attrchildnodes1.js
94
var
textNode
;
110
textNode
= childNodes.item(0);
111
value =
textNode
.nodeValue;
114
textNode
= childNodes.item(1);
115
assertNull("secondItemIsNull",
textNode
);
hc_attrnormalize.js
94
var
textNode
;
109
textNode
= doc.createTextNode("terday");
110
retval = titleAttr.appendChild(
textNode
);
111
textNode
= doc.createTextNode("");
112
retval = titleAttr.appendChild(
textNode
);
hc_elementnormalize.js
94
var
textNode
;
104
textNode
= doc.createTextNode("");
105
retNode = testName.appendChild(
textNode
);
106
textNode
= doc.createTextNode(",000");
107
retNode = testName.appendChild(
textNode
);
/external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_attrchildnodes2.js
93
var
textNode
;
109
textNode
= doc.createTextNode("terday");
110
retval = titleAttr.appendChild(
textNode
);
112
textNode
= childNodes.item(0);
113
value =
textNode
.nodeValue;
116
textNode
= childNodes.item(1);
117
value =
textNode
.nodeValue;
120
textNode
= childNodes.item(2);
121
assertNull("thirdItemIsNull",
textNode
);
hc_attrfirstchild.js
94
var
textNode
;
107
textNode
= titleAttr.firstChild;
109
assertNotNull("textNodeNotNull",
textNode
);
110
value =
textNode
.nodeValue;
113
otherChild =
textNode
.nextSibling;
116
otherChild =
textNode
.previousSibling;
hc_attrlastchild.js
94
var
textNode
;
107
textNode
= titleAttr.firstChild;
109
assertNotNull("textNodeNotNull",
textNode
);
110
value =
textNode
.nodeValue;
113
otherChild =
textNode
.nextSibling;
116
otherChild =
textNode
.previousSibling;
hc_attrchildnodes1.js
94
var
textNode
;
110
textNode
= childNodes.item(0);
111
value =
textNode
.nodeValue;
114
textNode
= childNodes.item(1);
115
assertNull("secondItemIsNull",
textNode
);
hc_attrnormalize.js
94
var
textNode
;
109
textNode
= doc.createTextNode("terday");
110
retval = titleAttr.appendChild(
textNode
);
111
textNode
= doc.createTextNode("");
112
retval = titleAttr.appendChild(
textNode
);
hc_elementnormalize.js
94
var
textNode
;
104
textNode
= doc.createTextNode("");
105
retNode = testName.appendChild(
textNode
);
106
textNode
= doc.createTextNode(",000");
107
retNode = testName.appendChild(
textNode
);
/external/webkit/LayoutTests/dom/xhtml/level3/core/
textreplacewholetext07.js
97
var
textNode
;
113
textNode
= doc.createTextNode("New Text");
115
appendedChild = elementName.appendChild(
textNode
);
116
textNode
= elementName.firstChild;
118
replacedText =
textNode
.replaceWholeText("New Text and Cdata");
119
textNode
= elementName.firstChild;
121
assertSame("retval_same",
textNode
,replacedText);
122
nodeValue =
textNode
.nodeValue;
125
node =
textNode
.nextSibling;
nodegetbaseuri19.js
97
var
textNode
;
111
textNode
= pElem.firstChild;
113
assertNotNull("expansionNotNull",
textNode
);
121
textNode
= entRef.firstChild;
123
assertNotNull("entRefTextNotNull",
textNode
);
126
baseURI =
textNode
.baseURI;
textreplacewholetext06.js
102
var
textNode
;
115
textNode
= doc.createTextNode("New Text");
117
appendedChild = elementStrong.appendChild(
textNode
);
119
textNode
= elementStrong.firstChild;
121
replacedText =
textNode
.replaceWholeText("New Text and Cdata");
122
nodeValue =
textNode
.nodeValue;
textiselementcontentwhitespace04.js
91
var
textNode
;
114
textNode
= pElem.firstChild;
117
replacedNode = pElem.replaceChild(blankNode,
textNode
);
119
textNode
= pElem.firstChild;
121
isElemContentWhitespace =
textNode
.isElementContentWhitespace;
textreplacewholetext05.js
92
var
textNode
;
105
textNode
= doc.createTextNode("New Text");
107
appendedChild = elementName.appendChild(
textNode
);
109
textNode
= elementName.firstChild;
111
replacedText =
textNode
.replaceWholeText("New Text and Cdata");
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrchildnodes2.java
64
Text
textNode
;
73
textNode
= doc.createTextNode("terday");
74
retval = titleAttr.appendChild(
textNode
);
76
textNode
= (Text) childNodes.item(0);
77
value =
textNode
.getNodeValue();
79
textNode
= (Text) childNodes.item(1);
80
value =
textNode
.getNodeValue();
82
textNode
= (Text) childNodes.item(2);
83
assertNull("thirdItemIsNull",
textNode
);
hc_attrfirstchild.java
65
Text
textNode
;
72
textNode
= (Text) titleAttr.getFirstChild();
73
assertNotNull("textNodeNotNull",
textNode
);
74
value =
textNode
.getNodeValue();
76
otherChild =
textNode
.getNextSibling();
78
otherChild =
textNode
.getPreviousSibling();
hc_attrlastchild.java
65
Text
textNode
;
72
textNode
= (Text) titleAttr.getFirstChild();
73
assertNotNull("textNodeNotNull",
textNode
);
74
value =
textNode
.getNodeValue();
76
otherChild =
textNode
.getNextSibling();
78
otherChild =
textNode
.getPreviousSibling();
/external/webkit/Source/WebCore/editing/
InsertTextCommand.cpp
54
RefPtr<Node>
textNode
= document()->createEditingTextNode("");
55
insertNodeAtTabSpanPosition(
textNode
.get(), pos);
56
return firstPositionInNode(
textNode
.get());
62
RefPtr<Node>
textNode
= document()->createEditingTextNode("");
63
insertNodeAt(
textNode
.get(), pos);
64
return firstPositionInNode(
textNode
.get());
168
Text*
textNode
= static_cast<Text*>(startPosition.containerNode());
171
insertTextIntoNode(
textNode
, offset, text);
172
endPosition = Position(
textNode
, offset + text.length(), Position::PositionIsOffsetInAnchor);
183
rebalanceWhitespaceOnTextSubstring(
textNode
, startPosition.offsetInContainerNode(), endPosition.offsetInContainerNode())
[
all
...]
/external/chromium/chrome/common/extensions/docs/build/
generator.html
44
var
textNode
= document.createTextNode(
46
preNode.appendChild(
textNode
);
/external/webkit/LayoutTests/fast/dom/Attr/
child-nodes-length-cache.html
14
var
textNode
= document.createTextNode("terday");
16
nameAttr.appendChild(
textNode
);
Completed in 956 milliseconds
1
2
3
4
5
6
7
8
9