Searched defs:responseHeaderMatch (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/inspector/front-end/
H A DAuditRules.js460 var maxAgeMatch = this.responseHeaderMatch(resource, "Cache-Control", "max-age=(\\d+)");
496 if (this.responseHeaderMatch(resource, "Cache-Control", "public"))
499 return resource.url.indexOf("?") == -1 && !this.responseHeaderMatch(resource, "Cache-Control", "private");
502 responseHeaderMatch: function(resource, header, regexp)
512 (this.hasResponseHeader(resource, "Expires") || this.responseHeaderMatch(resource, "Cache-Control", "max-age"));
518 return this.responseHeaderMatch(resource, "Cache-Control", "(no-cache|no-store|must-revalidate)") ||
519 this.responseHeaderMatch(resource, "Pragma", "no-cache") ||
624 !this.responseHeaderMatch(resource, "Cache-Control", "public") &&

Completed in 100 milliseconds