Lines Matching refs:node

1260 this.clearNode = function(node)  argument
1262 var nodeName = " " + node.nodeName.toLowerCase() + " ";
1267 this.eraseNode(node);
1269 node.innerHTML = "";
1272 this.eraseNode = function(node) argument
1274 while (node.lastChild)
1275 node.removeChild(node.lastChild);
1835 var getElementType = this.getElementType = function(node)
1837 if (isElementXUL(node))
1839 else if (isElementSVG(node))
1841 else if (isElementMathML(node))
1843 else if (isElementXHTML(node))
1845 else if (isElementHTML(node))
1849 var getElementSimpleType = this.getElementSimpleType = function(node)
1851 if (isElementSVG(node))
1853 else if (isElementMathML(node))
1859 var isElementHTML = this.isElementHTML = function(node)
1861 return node.nodeName == node.nodeName.toUpperCase();
1864 var isElementXHTML = this.isElementXHTML = function(node)
1866 return node.nodeName == node.nodeName.toLowerCase();
1869 var isElementMathML = this.isElementMathML = function(node)
1871 return node.namespaceURI == 'http://www.w3.org/1998/Math/MathML';
1874 var isElementSVG = this.isElementSVG = function(node)
1876 return node.namespaceURI == 'http://www.w3.org/2000/svg';
1879 var isElementXUL = this.isElementXUL = function(node)
1881 return node instanceof XULElement;
2023 this.hasClass = function(node, name) // className, className, ... argument
2029 return (' '+node.className+' ').indexOf(' '+name+' ') != -1;
2031 if (!node || node.nodeType != 1)
2039 if (!re.exec(node.className))
2047 this.old_hasClass = function(node, name) // className, className, ... argument
2049 if (!node || node.nodeType != 1)
2057 if (!re.exec(node.className))
2065 this.setClass = function(node, name) argument
2067 if (node && (' '+node.className+' ').indexOf(' '+name+' ') == -1)
2069 node.className += " " + name;
2072 this.getClassValue = function(node, name) argument
2075 var m = re.exec(node.className);
2079 this.removeClass = function(node, name) argument
2081 if (node && node.className)
2083 var index = node.className.indexOf(name);
2087 node.className = node.className.substr(0,index-1) + node.className.substr(index+size);
2153 this.getChildByClass = function(node) // ,classname, classname, classname... argument
2158 var child = node.firstChild;
2159 node = null;
2164 node = child;
2170 return node;
2173 this.getAncestorByClass = function(node, className) argument
2175 for (var parent = node; parent; parent = parent.parentNode)
2185 this.getElementsByClass = function(node, className) argument
2189 for (var child = node.firstChild; child; child = child.nextSibling)
2198 this.getElementByClass = function(node, className) // className, className, ... argument
2201 for (var child = node.firstChild; child; child = child.nextSibling)
2217 this.isAncestor = function(node, potentialAncestor) argument
2219 for (var parent = node; parent; parent = parent.parentNode)
2228 this.getNextElement = function(node) argument
2230 while (node && node.nodeType != 1)
2231 node = node.nextSibling;
2233 return node;
2236 this.getPreviousElement = function(node) argument
2238 while (node && node.nodeType != 1)
2239 node = node.previousSibling;
2241 return node;
2256 this.findNextDown = function(node, criteria) argument
2258 if (!node)
2261 for (var child = node.firstChild; child; child = child.nextSibling)
2272 this.findPreviousUp = function(node, criteria) argument
2274 if (!node)
2277 for (var child = node.lastChild; child; child = child.previousSibling)
2288 this.findNext = function(node, criteria, upOnly, maxRoot) argument
2290 if (!node)
2295 var next = this.findNextDown(node, criteria);
2300 for (var sib = node.nextSibling; sib; sib = sib.nextSibling)
2310 if (node.parentNode && node.parentNode != maxRoot)
2311 return this.findNext(node.parentNode, criteria, true);
2314 this.findPrevious = function(node, criteria, downOnly, maxRoot) argument
2316 if (!node)
2319 for (var sib = node.previousSibling; sib; sib = sib.previousSibling)
2331 var next = this.findPreviousUp(node, criteria);
2336 if (node.parentNode && node.parentNode != maxRoot)
2338 if (criteria(node.parentNode))
2339 return node.parentNode;
2341 return this.findPrevious(node.parentNode, criteria, true);
2347 var iter = function iter(node) { return node.nodeType == 1 && FBL.hasClass(node, state); }; argument
2353 var iter = function iter(node) { return node.nodeType == 1 && FBL.hasClass(node, state); }; argument
6425 getRepObject: function(node) argument
6428 for (var child = node; child; child = child.parentNode)
6443 getRepNode: function(node) argument
6445 for (var child = node; child; child = child.parentNode)
9423 formatNode = function(node) argument
9427 node.firebugIgnore = true;
9436 node.style.border = "0";
9437 node.style.visibility = "hidden";
9438 node.style.zIndex = "2147483647"; // MAX z-index = 2147483647
9439 node.style.position = noFixedPosition ? "absolute" : "fixed";
9440 node.style.width = "100%"; // "102%"; IE auto margin bug
9441 node.style.left = "0";
9442 node.style.bottom = noFixedPosition ? "-1px" : "0";
9443 node.style.height = height + "px";
9454 var node = chrome.node = createGlobalElement("div"),
9485 node.className = "fbBody";
9486 node.style.overflow = "hidden";
9487 node.innerHTML = getChromeDivTemplate();
9493 node.firstChild.style.height = "1px";
9494 node.firstChild.style.position = "static";
9499 formatNode(node);
9501 body.appendChild(node);
9525 var node = chrome.node = createGlobalElement("iframe");
9526 node.setAttribute("src", url);
9527 node.setAttribute("frameBorder", "0");
9529 formatNode(node);
9531 body.appendChild(node);
9537 node.id = options.id;
9589 node = chrome.node = context.window.open(
9595 if (node)
9599 node.focus();
9620 doc = isChromeFrame ? node.contentWindow.document : node.document;
9636 isChromeFrame && (win=node.contentWindow) &&
9637 node.contentWindow.document.getElementById("fbCommandLine") ||
9640 !isChromeFrame && (win=node.window) && node.document &&
9641 node.document.getElementById("fbCommandLine") )
9668 body.removeChild(node);
9670 node.close();
9813 node: null,
10122 chrome.getElementPosition(chrome.node) :
10541 if (isOpera && Firebug.chrome.type == "popup" && Firebug.chrome.node.closed)
10694 height: this.node.offsetHeight,
10695 width: this.node.offsetWidth
10844 this.node.style.display = "block";
10878 this.node.parentNode.removeChild(this.node);
10879 this.node = null;
10880 delete this.node;
10937 var node = this.node;
10939 node.style.visibility = "hidden"; // Avoid flickering
10950 node.style.display = "block";
10960 node.style.visibility = "visible";
10991 var node = this.node;
10995 node.style.visibility = "hidden"; // Avoid flickering
11003 node.style.visibility = "visible";
11006 node.style.display = "none";
11039 var height = this.node.offsetHeight;
11043 this.node.style.top = maxHeight - height + scroll.top + "px";
11048 this.node.style.width = size.width + "px";
11093 var node = this.node;
11094 node.style.height = "27px";
11095 node.style.width = width + "px";
11096 node.style.left = "";
11097 node.style.right = 0;
11099 if (this.node.nodeName.toLowerCase() == "iframe")
11101 node.setAttribute("allowTransparency", "true");
11105 node.style.background = "transparent";
11126 var node = this.node;
11127 node.style.height = Firebug.context.persistedState.height + "px";
11128 node.style.width = "100%";
11129 node.style.left = 0;
11130 node.style.right = "";
11132 if (this.node.nodeName.toLowerCase() == "iframe")
11134 node.setAttribute("allowTransparency", "false");
11138 node.style.background = "#fff";
11233 this.node.close();
11495 var chromeNode = Firebug.chrome.node;
13435 var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id");
13436 return elem.nodeType === 1 && node && node.nodeValue === match;
13738 Firebug.chrome.node.focus();
14600 function __link__(node, tag, args) argument
14607 var domArgs = [node, tag.tag.context, 0];
15136 var node = firstRow.parentNode.firstChild; variable
15137 for (; node && node != firstRow; node = node.nextSibling)
16947 … var node = FirebugReps.StackTrace.tag.append({object: target.stackTrace}, traceBox);
19853 var node = this.sourceTag.replace({}, tbody);
19855 var sourceNode = $$(".source", node)[0];
22154 var node = row.ownerDocument.createTextNode(text);
22155 row.appendChild(node);
22602 function findRow(node) { return getAncestorByClass(node, "logRow"); } argument
24246 for (var n=0, node; node=nodeArray[n]; n++)
24248 if (node.nodeType == 1)
24250 if (Firebug.ignoreFirebugElements && node.firebugIgnore) continue;
24252 var uid = ElementCache(node);
24253 var child = node.childNodes;
24256 var nodeName = node.nodeName.toLowerCase();
24258 var nodeVisible = isVisible(node);
24260 var hasSingleTextChild = childLength == 1 && node.firstChild.nodeType == 3 &&
24293 for (var i = 0; i < node.attributes.length; ++i)
24295 var attr = node.attributes[i];
24306 var value = name == "style" ? formatStyles(node.style.cssText) : attr.nodeValue;
24373 else if (node.nodeType == 3)
24375 if ( node.parentNode && ( node.parentNode.nodeName.toLowerCase() == "script" ||
24376 node.parentNode.nodeName.toLowerCase() == "style" ) )
24378 var value = node.nodeValue.replace(reTrim, '');
24405 var value = node.nodeValue.replace(reTrim, '');
24475 var node, stack = [];
24480 var node = ElementCache.get(id).parentNode;
24482 if (node)
24483 id = ElementCache(node);
24493 node = $(id);
24496 this.appendTreeChildren(node);
24499 selectElement(node);
24503 fbPanel1.scrollTop = Math.round(node.offsetTop - fbPanel1.clientHeight/2);
24583 addEvent(Firebug.chrome.node, 'mouseout', Firebug.HTML.onListMouseMove);
24591 removeEvent(Firebug.chrome.node, 'mouseout', Firebug.HTML.onListMouseMove);
24944 appendNode: function(node, html) argument
24946 if (node.nodeType == 1)
24948 var uid = ElementCache(node);
24954 '&lt;<span class="nodeTag">', node.nodeName.toLowerCase(), '</span>');
24956 for (var i = 0; i < node.attributes.length; ++i)
24958 var attr = node.attributes[i];
24963 var value = name == "style" ? node.style.cssText : attr.nodeValue;
24970 if (node.firstChild)
24974 for (var child = node.firstChild; child; child = child.nextSibling)
24978 node.nodeName.toLowerCase(), '&gt;</span></span></div>');
24983 else if (node.nodeType == 3)
24985 var value = trim(node.nodeValue);
27791 function findRow(node) { return node.nodeType == 1 ? node : node.parentNode; } argument
30608 var node = row.firstChild;
30609 return node.textContent ? node.textContent : node.innerText;