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

Lines Matching defs:Warnings

241     get warnings()
246 set warnings(x)
262 if (!this.errors && !this.warnings) {
278 if (this.warnings) {
281 warningsElement.textContent = this.warnings;
286 if (this.warnings) {
288 if (this.warnings == 1)
289 errorWarningElement.title = WebInspector.UIString("%d error, %d warning", this.errors, this.warnings);
291 errorWarningElement.title = WebInspector.UIString("%d error, %d warnings", this.errors, this.warnings);
292 } else if (this.warnings == 1)
293 errorWarningElement.title = WebInspector.UIString("%d errors, %d warning", this.errors, this.warnings);
295 errorWarningElement.title = WebInspector.UIString("%d errors, %d warnings", this.errors, this.warnings);
300 } else if (this.warnings == 1)
301 errorWarningElement.title = WebInspector.UIString("%d warning", this.warnings);
302 else if (this.warnings)
303 errorWarningElement.title = WebInspector.UIString("%d warnings", this.warnings);
470 this.Warnings = {