Home | History | Annotate | Download | only in front-end

Lines Matching refs:textNode

1363         var textNode = this._cachedTextNodes.pop();
1364 if (textNode)
1365 textNode.nodeValue = text;
1367 textNode = document.createTextNode(text);
1368 element.appendChild(textNode);
1371 element.textNodes.push(textNode);