Lines Matching refs:attr

828     attr = 'attributes',  variable
832 e(0x0022, 'quot', attr, css);
833 e(0x0026, 'amp', attr, text, css);
835 e(0x003c, 'lt', attr, text, css);
836 e(0x003e, 'gt', attr, text, css);
842 e(0x2012, '#8210', attr, text, editor); // figure dash
843 e(0x2013, 'ndash', attr, text, editor); // en dash
844 e(0x2014, 'mdash', attr, text, editor); // em dash
845 e(0x2015, '#8213', attr, text, editor); // horizontal bar
847 e(0x00a0, 'nbsp', attr, text, white, editor);
848 e(0x2002, 'ensp', attr, text, white, editor);
849 e(0x2003, 'emsp', attr, text, white, editor);
850 e(0x2009, 'thinsp', attr, text, white, editor);
851 e(0x200c, 'zwnj', attr, text, white, editor);
852 e(0x200d, 'zwj', attr, text, white, editor);
853 e(0x200e, 'lrm', attr, text, white, editor);
854 e(0x200f, 'rlm', attr, text, white, editor);
855 e(0x200b, '#8203', attr, text, white, editor); // zero-width space (ZWSP)
1906 var attr = elt.attributes[i];
1909 if (attr.localName.indexOf("firebug-") == 0)
1913 if (attr.localName.indexOf("-moz-math") == 0)
1919 html.push(' ', attr.nodeName, '="', escapeForElementAttribute(attr.nodeValue),'"');
1978 var attr = elt.attributes[i];
1981 if (attr.localName.indexOf("firebug-") == 0)
1985 if (attr.localName.indexOf("-moz-math") == 0)
1991 xml.push(' ', attr.nodeName, '="', escapeForElementAttribute(attr.nodeValue),'"');
12599 for (var i=0, attr; attr = attributes[i]; i++) {
12600 storage.removeAttribute(attr.name)
16134 var attr = elt.attributes[i];
16137 if (!attr.specified || attr.nodeName && attr.nodeName.indexOf("firebug-") != -1)
16139 else if (attr.nodeName == "id")
16140 idAttr = attr;
16141 else if (attr.nodeName == "class")
16142 classAttr = attr;
16143 else if (attr.nodeName == "style")
16145 nodeName: attr.nodeName,
16146 nodeValue: attr.nodeValue ||
16153 attrs.push(attr);
16171 var attr = elt.attributes[i];
16172 if (attr.nodeName == "id" || attr.nodeName == "class")
16173 attrs.push(attr);
24295 var attr = node.attributes[i];
24296 if (!attr.specified ||
24301 isIE && (browserVersion-0<9) && typeof attr.nodeValue != "string" ||
24302 … Firebug.ignoreFirebugElements && ignoreHTMLProps.hasOwnProperty(attr.nodeName))
24305 var name = attr.nodeName.toLowerCase();
24306 var value = name == "style" ? formatStyles(node.style.cssText) : attr.nodeValue;
24958 var attr = node.attributes[i];
24959 if (!attr.specified || attr.nodeName == cacheID)
24962 var name = attr.nodeName.toLowerCase();
24963 var value = name == "style" ? node.style.cssText : attr.nodeValue;