Skip to content

Commit

Permalink
manifest display must be one of the 3 allowed values.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Jul 21, 2016
1 parent 54995e1 commit 98c4980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lighthouse-core/audits/manifest-display.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ManifestDisplay extends Audit {
* @return {boolean}
*/
static hasRecommendedValue(val) {
return val !== undefined;
return (val === 'fullscreen' || val === 'standalone' || val === 'browser');;
}

/**
Expand Down

0 comments on commit 98c4980

Please sign in to comment.