You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should be more aggressive about warning about unprefixed nonstandard keys.
On 21 Oct. 2016, at 11:32 am, Dan Dascalescu [email protected] wrote:
The following manifest will validate successfully:
{
"name": "Trulia Progressive Web App",
"short_name": "Trulia PWA",
"icons": [{
"src": "images/touch/icon-72x72.png",
"sizes": "72x72",
"type": "image/png"
}, {
"href": "images/touch/icon-96x96.png",
"sizes": "96x96",
"type": "image/png"
}, {
"src": "images/touch/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
}],
"background_color": "#40455f",
"display": "standalone",
"theme_color": "#53b50a",
"start_url": "/?homescreen=1"
}
Note the second element of the icons array. The key "href" should be "src". This led to a hard to debug issue because of this bug in Chrome.
The following manifest will validate successfully:
Note the second element of the icons array. The key "href" should be "src". This led to a hard to debug issue because of this bug in Chrome.
CC @slightlyoff
The text was updated successfully, but these errors were encountered: