Lines Matching refs:el

14   el:{},  property
127el.firebugIcon = new lib.element("div").attribute.set('firebugIgnore',true).attribute.set("id","fi…
132 el.content = {};
133el.mainiframe = new lib.element("IFRAME").attribute.set("id","FirebugIFrame").attribute.set('fireb…
134el.main = new lib.element("DIV").attribute.set("id","Firebug").attribute.set('firebugIgnore',true)…
136el.resizer = new lib.element("DIV").attribute.addClass("Resizer").event.addListener("mousedown",wi…
138 el.header = new lib.element("DIV").attribute.addClass("Header").insert(el.main);
139 el.left = {};
140 el.left.container = new lib.element("DIV").attribute.addClass("Left").insert(el.main);
141 el.right = {};
142 el.right.container = new lib.element("DIV").attribute.addClass("Right").insert(el.main);
143 el.main.child.add(new lib.element("DIV").attribute.addClass('Clear'));
148 el.button = {};
149el.button.container = new lib.element("DIV").attribute.addClass("ButtonContainer").insert(el.heade…
150el.button.logo = new lib.element("A").attribute.set("title","Firebug Lite").attribute.set("target"…
151el.button.inspect = new lib.element("A").attribute.addClass("Button").event.addListener("click",in…
152el.button.dock = new lib.element("A").attribute.addClass("Button Dock").event.addListener("click",…
153el.button.newWindow = new lib.element("A").attribute.addClass("Button NewWindow").event.addListene…
156el.button.maximize = new lib.element("A").attribute.addClass("Button Maximize").event.addListener(…
157el.button.minimize = new lib.element("A").attribute.addClass("Button Minimize").event.addListener(…
158el.button.close = new lib.element("A").attribute.addClass("Button Close").event.addListener("click…
162 el.button.container.environment.addStyle({ "paddingTop":"12px" });
168 el.nav = {};
169 el.nav.container = new lib.element("DIV").attribute.addClass("Nav").insert(el.left.container);
170el.nav.console = new lib.element("A").attribute.addClass("Tab Selected").event.addListener("click"…
171el.nav.html = new lib.element("A").attribute.addClass("Tab").update("HTML").event.addListener("cli…
172el.nav.css = new lib.element("A").attribute.addClass("Tab").update("CSS").event.addListener("click…
174el.nav.scripts = new lib.element("A").attribute.addClass("Tab").update("Script").event.addListener…
176el.nav.dom = new lib.element("A").attribute.addClass("Tab").update("DOM").event.addListener("click…
177el.nav.xhr = new lib.element("A").attribute.addClass("Tab").update("XHR").event.addListener("click…
178el.nav.optionsdiv = new lib.element("DIV").attribute.addClass("Settings").insert(el.nav.container);
179el.nav.options = new lib.element("A").attribute.addClass("Tab Button Options").update("Options&nbs…
184el.borderInspector = new lib.element("DIV").attribute.set("id","FirebugBorderInspector").attribute…
185el.bgInspector = new lib.element("DIV").attribute.set("id","FirebugBGInspector").attribute.set('fi…
190 el.left.console = {};
191el.left.console.container = new lib.element("DIV").attribute.addClass("Console").insert(el.left.co…
192el.left.console.mlButton = new lib.element("A").attribute.addClass("MLButton").event.addListener("…
193 el.left.console.monitor = new lib.element("DIV").insert(
194 new lib.element("DIV").attribute.addClass("Monitor").insert(el.left.console.container)
196 el.left.console.container.child.add(
199el.left.console.input = new lib.element("INPUT").attribute.set("type","text").attribute.addClass("…
200 … new lib.element("DIV").attribute.addClass("InputContainer").insert(el.left.console.container)
203 el.right.console = {};
204el.right.console.container = new lib.element("DIV").attribute.addClass("Console Container").insert…
205el.right.console.mlButton = new lib.element("A").attribute.addClass("MLButton CloseML").event.addL…
206el.right.console.input = new lib.element("TEXTAREA").attribute.addClass("Input").insert(el.right.c…
207el.right.console.input.event.addListener("keydown",lib.util.Curry(tab,window,el.right.console.inpu…
208el.right.console.run = new lib.element("A").attribute.addClass("Button").event.addListener("click"…
209el.right.console.clear = new lib.element("A").attribute.addClass("Button").event.addListener("clic…
211 el.button.console = {};
212el.button.console.container = new lib.element("DIV").attribute.addClass("ButtonSet").insert(el.but…
213el.button.console.clear = new lib.element("A").attribute.addClass("Button").event.addListener("cli…
219 el.left.html = {};
220el.left.html.container = new lib.element("DIV").attribute.addClass("HTML").insert(el.left.containe…
222 el.right.html = {};
223el.right.html.container = new lib.element("DIV").attribute.addClass("HTML Container").insert(el.ri…
225 el.right.html.nav = {};
226el.right.html.nav.container = new lib.element("DIV").attribute.addClass("Nav").insert(el.right.htm…
227el.right.html.nav.computedStyle = new lib.element("A").attribute.addClass("Tab Selected").event.ad…
228el.right.html.nav.dom = new lib.element("A").attribute.addClass("Tab").event.addListener("click",l…
230el.right.html.content = new lib.element("DIV").attribute.addClass("Content").insert(el.right.html.…
232 el.button.html = {};
233el.button.html.container = new lib.element("DIV").attribute.addClass("ButtonSet HTML").insert(el.b…
239 el.left.css = {};
240el.left.css.container = new lib.element("DIV").attribute.addClass("CSS").insert(el.left.container);
242 el.right.css = {};
243el.right.css.container = new lib.element("DIV").attribute.addClass("CSS Container").insert(el.righ…
245 el.right.css.nav = {};
246el.right.css.nav.container = new lib.element("DIV").attribute.addClass("Nav").insert(el.right.css.…
247el.right.css.nav.runCSS = new lib.element("A").attribute.addClass("Tab Selected").update("Run CSS"…
249el.right.css.mlButton = new lib.element("A").attribute.addClass("MLButton CloseML").event.addListe…
250el.right.css.input = new lib.element("TEXTAREA").attribute.addClass("Input").insert(el.right.css.c…
251el.right.css.input.event.addListener("keydown",lib.util.Curry(firebug.tab,window,el.right.css.inpu…
252el.right.css.run = new lib.element("A").attribute.addClass("Button").event.addListener("click",lis…
253el.right.css.clear = new lib.element("A").attribute.addClass("Button").event.addListener("click",l…
255 el.button.css = {};
256el.button.css.container = new lib.element("DIV").attribute.addClass("ButtonSet CSS").insert(el.but…
257el.button.css.selectbox = new lib.element("SELECT").event.addListener("change",listen.cssSelectbox…
263 el.left.scripts = {};
264el.left.scripts.container = new lib.element("DIV").attribute.addClass("Scripts").insert(el.left.co…
266 el.right.scripts = {};
267el.right.scripts.container = new lib.element("DIV").attribute.addClass("Scripts Container").insert…
269 el.button.scripts = {};
270el.button.scripts.container = new lib.element("DIV").attribute.addClass("ButtonSet Scripts").inser…
271el.button.scripts.selectbox = new lib.element("SELECT").event.addListener("change",listen.scriptsS…
272el.button.scripts.lineNumbers = new lib.element("A").attribute.addClass("Button").event.addListene…
278 el.left.dom = {};
279el.left.dom.container = new lib.element("DIV").attribute.addClass("DOM").insert(el.left.container);
281 el.right.dom = {};
282el.right.dom.container = new lib.element("DIV").attribute.addClass("DOM Container").insert(el.righ…
284 el.button.dom = {};
285el.button.dom.container = new lib.element("DIV").attribute.addClass("ButtonSet DOM").insert(el.but…
286el.button.dom.label = new lib.element("LABEL").update("Object Path:").insert(el.button.dom.contain…
287el.button.dom.textbox = new lib.element("INPUT").event.addListener("keydown",listen.domTextbox).up…
292 el.left.str = {};
293el.left.str.container = new lib.element("DIV").attribute.addClass("STR").insert(el.left.container);
295 el.right.str = {};
296el.right.str.container = new lib.element("DIV").attribute.addClass("STR").insert(el.left.container…
298 el.button.str = {};
299el.button.str.container = new lib.element("DIV").attribute.addClass("ButtonSet XHR").insert(el.but…
300el.button.str.watch = new lib.element("A").attribute.addClass("Button").event.addListener("click",…
305 el.left.xhr = {};
306el.left.xhr.container = new lib.element("DIV").attribute.addClass("XHR").insert(el.left.container);
308 el.right.xhr = {};
309el.right.xhr.container = new lib.element("DIV").attribute.addClass("XHR").insert(el.left.container…
312 el.button.xhr = {};
313el.button.xhr.container = new lib.element("DIV").attribute.addClass("ButtonSet XHR").insert(el.but…
314el.button.xhr.label = new lib.element("LABEL").update("XHR Path:").insert(el.button.xhr.container);
315el.button.xhr.textbox = new lib.element("INPUT").event.addListener("keydown",listen.xhrTextbox).in…
316el.button.xhr.watch = new lib.element("A").attribute.addClass("Button").event.addListener("click",…
321 el.settings = {};
322 el.settings.container = new lib.element("DIV").child.add(
326 ).attribute.addClass("SettingsDiv").insert(el.main);
327el.settings.content = new lib.element("DIV").attribute.addClass("Content").insert(el.settings.cont…
328el.settings.progressDiv = new lib.element("DIV").attribute.addClass("ProgressDiv").insert(el.setti…
329el.settings.progress = new lib.element("DIV").attribute.addClass("Progress").insert(el.settings.pr…
330el.settings.cbxDebug = new lib.element("INPUT").attribute.set("type","checkbox").attribute.addClas…
331 el.settings.content.child.add(document.createTextNode("Start visible"));
332 new lib.element("BR").insert(el.settings.content);
333el.settings.cbxDetectFirebug = new lib.element("INPUT").attribute.set("type","checkbox").attribute…
334 el.settings.content.child.add(document.createTextNode("Hide when Firebug active"));
335 new lib.element("BR").insert(el.settings.content);
336el.settings.cbxHideDOMFunctions = new lib.element("INPUT").attribute.set("type","checkbox").attrib…
337 el.settings.content.child.add(document.createTextNode("Hide DOM functions"));
338 new lib.element("BR").insert(el.settings.content);
339el.settings.cbxOverride = new lib.element("INPUT").attribute.set("type","checkbox").attribute.addC…
340 el.settings.content.child.add(document.createTextNode("Override window.console"));
341 new lib.element("BR").insert(el.settings.content);
342el.settings.cbxShowIcon = new lib.element("INPUT").attribute.set("type","checkbox").attribute.addC…
343 el.settings.content.child.add(document.createTextNode("Show icon when hidden"));
344 new lib.element("BR").insert(el.settings.content);
345el.settings.cbxOpenInPopup = new lib.element("INPUT").attribute.set("type","checkbox").attribute.a…
346 el.settings.content.child.add(document.createTextNode("Open in popup"));
347 new lib.element("BR").insert(el.settings.content);
348 el.settings.content.child.add(document.createTextNode("Trim textnode to "));
349el.settings.textNodeChars = new lib.element("INPUT").attribute.set("type","text").attribute.addCla…
350 el.settings.content.child.add(document.createTextNode(" chars"));
351 el.settings.buttonDiv = new lib.element("DIV").insert(el.settings.content);
352el.settings.buttonLeftDiv = new lib.element("DIV").attribute.addClass("ButtonsLeft").insert(el.set…
353el.settings.resetButton = new lib.element("INPUT").attribute.set("type","button").update("Reset").…
354el.settings.buttonRightDiv = new lib.element("DIV").attribute.addClass("ButtonsRight").insert(el.s…
355el.settings.cancelButton = new lib.element("INPUT").attribute.set("type","button").update("Cancel"…
356 el.settings.buttonRightDiv.child.add(document.createTextNode(" "));
357el.settings.saveButton = new lib.element("INPUT").attribute.set("type","button").update("Save").ev…
371 el.button.inspect,
372 el.button.close,
373 el.button.inspect,
374 el.button.console.clear,
375 el.right.console.run,
376 el.right.console.clear,
377 el.right.css.run,
378 el.right.css.clear
387 el.firebugIcon.environment.addStyle({ "display": env.debug&&'none'||'block' });
406 el.main.environment.addStyle({ "display":env.debug&&'block'||'none' });
407 el.mainiframe.environment.addStyle({ "display":env.debug&&'block'||'none' });
426 var posXY=lib.util.Element.getPosition(firebug.el.nav.options.element);
429 el.settings.container.environment.addStyle({
433 el.settings.progressDiv.environment.addStyle({
441 firebug.el.settings.container.environment.addStyle({
453 firebug.el.settings.progressDiv.environment.addStyle({
461 elSet=firebug.el.settings,
593 …values+='height:'+(parseInt(firebug.internal.targetWindow.firebug.el.main.element.style.height.rep…
602 elSet=firebug.el.settings;
616 el.main.environment.addStyle({
619 el.mainiframe.environment.addStyle({
623 el.firebugIcon.environment.addStyle({
631 el.main.environment.addStyle({
634 el.mainiframe.environment.addStyle({
638 el.firebugIcon.environment.addStyle({
647 el.firebugIcon.environment.addStyle({ "display": "none" });
657 el.main.environment.addStyle({ "height":"35px" });
658 el.mainiframe.environment.addStyle({ "height":"35px" });
659 el.button.maximize.environment.addStyle({ "display":"block" });
660 el.button.minimize.environment.addStyle({ "display":"none" });
667 el.button.minimize.environment.addStyle({ "display":"block" });
668 el.button.maximize.environment.addStyle({ "display":"none" });
711 el.button.dock.environment.addStyle({ "display": "block"});
712 el.button.newWindow.environment.addStyle({ "display": "none"});
727 el.button.dock.environment.addStyle({ "display": "block"});
728 el.button.newWindow.environment.addStyle({ "display": "none"});
739 firebug.el.main.environment.addStyle({"display": "none"});
740 firebug.el.mainiframe.environment.addStyle({"display": "none"});
754 el.main.environment.addStyle({
757 el.mainiframe.environment.addStyle({
777 el.main.environment.addStyle({
780 el.mainiframe.environment.addStyle({
790 win.resizer.y=[el.main.element.offsetHeight,_event.clientY];
792 win.resizer.y[3]=parseInt(el.main.environment.getPosition().top);
801 el.main.environment.addStyle({ "height":win.resizer.y[2]+"px" });
802 el.mainiframe.environment.addStyle({ "height":win.resizer.y[2]+"px" });
804el.main.environment.addStyle({ "top":win.resizer.y[3]-(win.resizer.y[1]-_event.clientY)+"px" });
805el.mainiframe.environment.addStyle({ "top":win.resizer.y[3]-(win.resizer.y[1]-_event.clientY)+"px"…
822 el.left.container.environment.addStyle({ "height":_height+"px" });
823 el.right.container.environment.addStyle({ "height":_height+"px" });
824 el.main.environment.addStyle({ "height":_height+38+"px" });
825 el.mainiframe.environment.addStyle({ "height":_height+38+"px" });
830 el.left.console.monitor.element.parentNode.style.height=_height-47+"px";
831 el.left.console.mlButton.environment.addStyle({ "top":_height+19+"px" });
832 el.right.console.mlButton.environment.addStyle({ "top":_height+19+"px" });
833 el.right.console.input.environment.addStyle({ "height":_height-29+"px" });
836 el.left.html.container.environment.addStyle({"height":_height-23+"px"});
837 el.right.html.content.environment.addStyle({"height":_height-23+"px"});
840 el.left.css.container.environment.addStyle({"height":_height-33+"px"});
841 el.right.css.input.environment.addStyle({ "height":_height-55+"px" });
844 el.left.scripts.container.environment.addStyle({"height":_height-23+"px"});
847 el.left.dom.container.environment.addStyle({"height":_height-31+"px"});
850 el.left.xhr.container.environment.addStyle({"height":_height-32+"px"});
853 el.left.str.container.environment.addStyle({"height":_height-32+"px"});
858 … d.dom.open(eval(el.button.dom.textbox.environment.getElement().value),el.left.dom.container);
870 el.main.environment.addStyle({ "width":dim.width+"px"});
871 el.mainiframe.environment.addStyle({ "width":dim.width+"px"});
879el.main.environment.addStyle({ "top":dim.height-el.main.environment.getSize().offsetHeight+Math.ma…
880el.mainiframe.environment.addStyle({ "top":dim.height-el.main.environment.getSize().offsetHeight+M…
893 return new lib.element("DIV").attribute.addClass("Row").insert(el.left.console.monitor);
899 d.clean(el.left.console.monitor);
915 d.dom.open(d.console.cache[_index], el.left.dom.container, lib.env.ie);
941 el.left.console.input.environment.getElement().value = "";
960el.left.console.monitor.environment.getElement().parentNode.scrollTop = Math.abs(el.left.console.m…
977 el[open?"left":"right"].console.mlButton.environment.addStyle({ display:"none" });
978 el[!open?"left":"right"].console.mlButton.environment.addStyle({ display:"block" });
979 el.left.console.mlButton.attribute[(open?"add":"remove")+"Class"]("CloseML");
1101 str+=d.css.printRule(selector, cssText.split(";"), el.left.css.container);
1106 el.left.css.container.update(str);
1122 el.button.css.selectbox.update("");
1127 el.button.css.selectbox.child.add(
1148 if(parentElement.opened&&parentElement!=el.left.dom.container){
1315 internal.targetWindow.firebug.el.bgInspector.environment.addStyle({ "display":"none" });
1342 for (t = 0; t < el.left.html.container.child.get().length; t++) {
1343 searchEl=el.left.html.container.child.get()[t];
1345 parentLayer = el.left.html.container.child.get()[t].childNodes[1].lib;
1351 parentLayer = el.left.html.container.child.get()[3].childNodes[1].lib;
1376 el.right.html.nav[d.html.nIndex].attribute.removeClass("Selected");
1377 el.right.html.nav[_index].attribute.addClass("Selected");
1385 parent = _parent || el.left.html.container,
1395 if(parent!=el.left.html.container){
1416 if (parent != el.left.html.container) {
1485 d.clean(el.right.html.content);
1496 el.right.html.content.update(str);
1499 d.dom.open(node,el.right.html.content,lib.env.ie);
1507 el:null,
1512 …internal.targetWindow.firebug.el[_bgInspector&&"bgInspector"||"borderInspector"].environment.addSt…
1519 d.inspector.el = _element;
1528el.button.inspect.attribute[(d.inspector.enabled ? "add" : "remove") + "Class"]("Enabled");
1530 el.borderInspector.environment.addStyle({ "display":"none" });
1531 d.inspector.el = null;
1548 el.left.scripts.container.update("");
1568 el.left.scripts.container.update(source);
1570 el.left.scripts.container.child.add(
1579el.button.scripts.lineNumbers.attribute[(d.scripts.lineNumbers ? "add" : "remove") + "Class"]("Ena…
1585 el.button.scripts.selectbox.clean();
1591 el.button.scripts.selectbox.child.add(
1603 el.left.str.container.update(_str.replace(/\n/g,"<br />"))
1624 el.left.xhr.container.update("");
1625el.left.xhr.name = new lib.element("DIV").attribute.addClass("BlockContent").insert(new lib.elemen…
1626el.left.xhr.nameTitle = new lib.element("STRONG").update("Object Name:").insert(el.left.xhr.name);
1627 el.left.xhr.nameContent = new lib.element("DIV").insert(el.left.xhr.name);
1628el.left.xhr.status = new lib.element("DIV").attribute.addClass("BlockContent").insert(new lib.elem…
1629el.left.xhr.statusTitle = new lib.element("STRONG").update("Status:").insert(el.left.xhr.status);
1630 el.left.xhr.statusContent = new lib.element("DIV").insert(el.left.xhr.status);
1631el.left.xhr.readystate = new lib.element("DIV").attribute.addClass("BlockContent").insert(new lib.…
1632el.left.xhr.readystateTitle =el.left.xhr.nameTitle = new lib.element("STRONG").update("Ready State…
1633 el.left.xhr.readystateContent = new lib.element("DIV").insert(el.left.xhr.readystate);
1634el.left.xhr.response = new lib.element("DIV").attribute.addClass("BlockContent").insert(new lib.el…
1635el.left.xhr.responseTitle = new lib.element("STRONG").update("Response:").insert(el.left.xhr.respo…
1636 el.left.xhr.responseContent = new lib.element("DIV").insert(el.left.xhr.response);
1642 el.left.xhr.nameContent.update("");
1643 el.left.xhr.statusContent.update("");
1644 el.left.xhr.readystateContent.update("");
1645 el.left.xhr.responseContent.update("");
1650 el.left.xhr.nameContent.child.add(new lib.element("span").update(item[0]));
1652 el.left.xhr.statusContent.child.add(new lib.element("span").update(item[1].status));
1653 … } catch(e){ el.left.xhr.statusContent.child.add(new lib.element("span").update("&nbsp;")); }
1654el.left.xhr.readystateContent.child.add(new lib.element("span").update(item[1].readyState));
1656 el.left.xhr.responseContent.child.add(new lib.element("span").child.add(
1667 el.left.container.environment.addStyle({ "width":_open?"70%":"100%" });
1668 el.right.container.environment.addStyle({ "display":_open?"block":"none" });
1678 el.button[close].container.environment.addStyle({ "display":"none" });
1679 el.left[close].container.environment.addStyle({ "display":"none" });
1680 el.right[close].container.environment.addStyle({ "display":"none" });
1682 el.button[open].container.environment.addStyle({ "display":"inline" });
1683 el.left[open].container.environment.addStyle({ "display":"block" });
1684 el.right[open].container.environment.addStyle({ "display":"block" });
1686 if(el.nav[close])
1687 el.nav[close].attribute.removeClass("Selected");
1688 if(el.nav[open])
1689 el.nav[open].attribute.addClass("Selected");
1712 if(el.left.dom.container.environment.getElement().innerHTML==""){
1714 … d.dom.open(eval(el.button.dom.textbox.environment.getElement().value),el.left.dom.container);
1771 …d.xhr.addObject.apply(internal.targetWindow, el.button.xhr.textbox.environment.getElement().value.…
1778 d.console.eval(el.left.console.input.environment.getElement().value);
1786 el.left.console.input.update( d.console.history[d.console.historyIndex] );
1792 el.left.console.input.update( d.console.history[d.console.historyIndex] );
1800 d.css.open(el.button.css.selectbox.environment.getElement().selectedIndex);
1806 … d.dom.open(eval(el.button.dom.textbox.environment.getElement().value),el.left.dom.container);
1813 internal.popupWin.firebug.d.html.inspect(firebug.d.inspector.el);
1815 firebug.d.html.inspect(firebug.d.inspector.el);
1836 } else if (el.main.environment.getStyle("display") === 'none') {
1850 var borderInspector = el.borderInspector.environment.getElement();
1851 var display = el.borderInspector.environment.getStyle("display");
1869 target!=el.main.environment.getElement()&&
1870 target.offsetParent!=el.main.environment.getElement() ) {
1879 d.console.eval.call(window,el.right.console.input.environment.getElement().value);
1884 … var source = el.right.css.input.environment.getElement().value.replace(/\n|\t/g,"").split("}");
1899 d.scripts.open(parseInt(el.button.scripts.selectbox.environment.getElement().value));
1905 …d.xhr.addObject.apply(internal.targetWindow, el.button.xhr.textbox.environment.getElement().value.…
2391 var el = arguments[i];
2393 el.environment ? el.environment.getElement() : el