Lines Matching refs:id

747 this.addScript = function(doc, id, src)  argument
751 element.setAttribute("id", id);
1778 if (element.id)
1779 label += "#" + element.id;
2133 this.$ = function(id, doc) argument
2136 return doc.getElementById(id);
2139 return FBL.Firebug.chrome.document.getElementById(id);
3667 frame.id = "FirebugSandbox";
6796 id: panelId,
6808 id: panelId + "Tab",
6830 id: panelId + "Buttons",
6844 id: panelId + "StatusBar",
7386 id: "fbPanelContextMenu",
8198 this.id = this.element;
8199 this.element = $(this.id);
8201 else if (this.id)
8203 this.element.id = this.id;
8338 var id = target.getAttribute("child");
8349 var childMenuObject = menuMap.hasOwnProperty(id) ?
8350 menuMap[id] : {element: $(id)};
8526 menuMap[object.id] = object;
9231 id: "FirebugUI" property in AnonymousFunction7f0ac5575400.WindowDefaultOptions
9537 node.id = options.id;
9865 id: "fbFirebugMenu",
9965 id: "fbFirebugOptionsMenu", property in AnonymousFunction7f0ac5575c00.firebugOptionsMenu
10321 var id = panelNode.id.substr(2);
10323 var panel = Firebug.chrome.panelMap[id];
10328 panel = Firebug.chrome.selectedPanel.sidePanelBar.panelMap[id];
11448 if (isOpera && isQuiksMode && win.frameElement.id == "FirebugUI")
11646 var id = getValidatedKey(element);
11648 if (!id)
11650 id = ++cacheUID;
11651 element[CID] = id;
11654 if (!map.hasOwnProperty(id))
11656 map[id] = element;
11657 data[id] = {};
11660 return id;
11665 var id = getValidatedKey(element);
11667 if (!id) return;
11678 delete map[id];
11679 delete data[id];
11690 var id = getValidatedKey(element);
11691 return id && map.hasOwnProperty(id);
11712 var id = cacheAPI.set(element);
11714 return data[id][name] = value;
11719 var id = cacheAPI.key(element);
11721 return data.hasOwnProperty(id) && data[id].hasOwnProperty(name) ?
11722 data[id][name] :
11729 for (var id in map)
11731 var element = map[id];
11739 var id = element[CID];
11747 id && // the element has the expando property
11748 map.hasOwnProperty(id) && // there is a cached element with the same id
11749 map[id] != element // but it is a different element than the current one
11755 id = null;
11758 return id;
13417 id = "script" + (new Date).getTime();
13418 form.innerHTML = "<a name='" + id + "'/>";
13426 if ( !!document.getElementById( id ) ) {
13430 …return m ? m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("i…
13748 var id = targ.id;
13749 if (id && /^fbOutline\w$/.test(id)) return;
13750 if (id == "FirebugUI") return;
13768 var id = targ.id;
13769 if (id && /^fbOutline\w$/.test(id)) return;
13770 if (id == "FirebugUI") return;
13815 var id = targ.id;
13816 if (id && /^fbOutline\w$/.test(id)) return;
13817 if (id == "FirebugUI") return;
14092 fbInspectFrame.id = "fbInspectFrame";
14112 el.id = name;
14131 boxModel.id = "fbBoxModel";
14137 boxMargin.id = "fbBoxMargin";
14143 boxBorder.id = "fbBoxBorder";
14149 boxPadding.id = "fbBoxPadding";
14155 boxContent.id = "fbBoxContent";
16099 return elt.id ? "#" + elt.id : "";
24156 $: function(id) argument
24158 return Firebug.browser.document.getElementById(id);
24416 var uid = treeNode.id;
24460 isTreeNodeVisible: function(id) argument
24462 return $(id);
24467 var id = el && ElementCache(el);
24468 if (id)
24469 this.selectTreeNode(id);
24472 selectTreeNode: function(id) argument
24474 id = ""+id;
24476 while(id && !this.isTreeNodeVisible(id))
24478 stack.push(id);
24480 var node = ElementCache.get(id).parentNode;
24483 id = ElementCache(node);
24488 stack.push(id);
24492 id = stack.pop();
24493 node = $(id);
24495 if (stack.length > 0 && ElementCache.get(id).childNodes.length > 0)
24609 var id = ElementCache(object);
24611 if (id)
24613 Firebug.HTML.selectTreeNode(id);
24658 Firebug.context.persistedState.selectedHTMLElementId = e.id;
24660 var target = ElementCache.get(e.id);
24819 …if (el.id == "FirebugUI" || " html head body br script link iframe ".indexOf(" "+nodeName+" ") != …
24936 if (object.id)
24937 html.push('<span class="selectorId">#', escapeHTML(object.id), '</span>');
26337 if (element && element.id)
26338 return '//*[@id="' + element.id + '"]';
26950 rules.push({tag: CSSStyleRuleTag.tag, rule: rule, id: ruleId,
27970 rules.splice(0, 0, {rule: rule, id: ruleId,
28067 {rule: element, id: getElementXPath(element),
28487 id: "", property in AnonymousFunction7f0ac5572b300.emptyRule