Home | History | Annotate | Download | only in front-end

Lines Matching refs:image

263                 [WebInspector.Resource.Type.Stylesheet, WebInspector.Resource.Type.Image],
740 WebInspector.AuditRule.call(this, "page-imagedims", "Specify image dimensions", parametersObject);
756 "speed up page display. The following image(s) are missing a width and/or height:");
805 var image = images[i];
806 if (!image.src)
808 var position = document.defaultView.getComputedStyle(image).getPropertyValue("position");
811 var cssText = (image.style && image.style.cssText) ? image.style.cssText : "";
812 var rules = document.defaultView.getMatchedCSSRules(image, "", true);
813 if (!hasWidth(image, cssText, rules) || !hasHeight(image, cssText, rules)) {
815 if (urlToNoDimensionCount.hasOwnProperty(image.src))
816 ++urlToNoDimensionCount[image.src];
818 urlToNoDimensionCount[image.src] = 1;
1174 WebInspector.Resource.Type.Image],