Home | History | Annotate | Download | only in resources

Lines Matching refs:childNode

98             var childNode = children[i];
99 if (childNode.data.key === storageData.key) {
100 rootNode.removeChild(childNode);
126 var childNode = new WebInspector.DataGridNode({key: storageData.key, value: storageData.value}, false);
127 rootNode.insertChild(childNode, children.length - 1);
146 var childNode = children[i];
147 if (childNode.data.key === storageData.key) {
149 rootNode.removeChild(childNode);
153 if (childNode.data.value !== storageData.value) {
154 childNode.data.value = storageData.value;
155 childNode.refresh();
156 childNode.select();
157 childNode.reveal();
245 var childNode = children[i];
246 if ((childNode.data.key === masterNode.data.key) && (masterNode !== childNode))
247 rootNode.removeChild(childNode);