Skip to content

Commit

Permalink
Add "minimal-ui" as an allowed display value.
Browse files Browse the repository at this point in the history
Commit 98c4980 said "manifest display must be one of the 3 allowed
values.", and this adds the fourth allowed value.
  • Loading branch information
dracos committed Dec 23, 2016
1 parent ef95039 commit f508d1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lighthouse-core/audits/manifest-display.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ class ManifestDisplay extends Audit {
* @return {boolean}
*/
static hasRecommendedValue(val) {
return (val === 'fullscreen' || val === 'standalone' || val === 'browser');
return (val === 'fullscreen' || val === 'standalone' ||
val === 'browser' || val === 'minimal-ui');
}

/**
Expand Down

0 comments on commit f508d1e

Please sign in to comment.