Lines Matching refs:img

1276 var instanceCheckMap={Window:{property:["window","document"],method:"setTimeout"},Document:{property:["body","cookie"],method:"getElementById"},Node:{property:"ownerDocument",method:"appendChild"},Element:{property:"tagName",value:{nodeType:1}},Location:{property:["hostname","protocol"],method:"assign"},HTMLImageElement:{property:"useMap",value:{nodeType:1,tagName:"img"}},HTMLAnchorElement:{property:"hreflang",value:{nodeType:1,tagName:"a"}},HTMLInputElement:{property:"form",value:{nodeType:1,tagName:"input"}},HTMLButtonElement:{},HTMLFormElement:{method:"submit",value:{nodeType:1,tagName:"form"}},HTMLBodyElement:{},HTMLHtmlElement:{},CSSStyleRule:{property:["selectorText","style"]}};
1362 this.selfClosingTags={meta:1,link:1,area:1,base:1,col:1,input:1,img:1,br:1,hr:1,param:1,embed:1};
4180 }}defineTags("a","button","br","canvas","code","col","colgroup","div","fieldset","form","h1","h2","h3","hr","img","input","label","legend","li","ol","optgroup","option","p","pre","select","span","strong","table","tbody","td","textarea","tfoot","th","thead","tr","tt","ul","iframe")
4370 }else{if(tag=="img"){openNewTab(elt.src)
5204 var responseImage=netInfoBox.ownerDocument.createElement("img");
6640 Firebug.InfoTip=extend(Firebug.Module,{dispatchName:"infoTip",tags:domplate({infoTipTag:DIV({"class":"infoTip"}),colorTag:DIV({style:"background: $rgbValue; width: 100px; height: 40px"}," "),imgTag:DIV({"class":"infoTipImageBox infoTipLoading"},IMG({"class":"infoTipImage",src:"$urlValue",repeat:"$repeat",onload:"$onLoadImage"}),IMG({"class":"infoTipBgImage",collapsed:true,src:"blank.gif"}),DIV({"class":"infoTipCaption"})),onLoadImage:function(event){var img=event.currentTarget||event.srcElement;
6641 var innerBox=img.parentNode;
6646 }var updateInfoTip=function(){var w=img.naturalWidth||img.width||10,h=img.naturalHeight||img.height||10;
6647 var repeat=img.getAttribute("repeat");
6648 if(repeat=="repeat-x"||(w==1&&h>1)){collapse(img,true);
6650 bgImg.style.background="url("+img.src+") repeat-x";
6654 }}else{if(repeat=="repeat-y"||(h==1&&w>1)){collapse(img,true);
6656 bgImg.style.background="url("+img.src+") repeat-y";
6660 }}else{if(repeat=="repeat"||(w==1&&h==1)){collapse(img,true);
6662 bgImg.style.background="url("+img.src+") repeat";
6665 }else{if(w>maxWidth||h>maxHeight){if(w>h){img.style.width=maxWidth+"px";
6666 img.style.height=Math.round((h/w)*maxWidth)+"px"
6667 }else{img.style.width=Math.round((w/h)*maxHeight)+"px";
6668 img.style.height=maxHeight+"px"