Re: [w3c/manifest] icon density should be supported (#118)

Hello everybody :wave: 

I follow the repository since a few days (after having done a deep dive in the [Manifest W3C document](https://www.w3.org/TR/appmanifest/)).

I just read the comments and I would like to ask if you guys think the [CSS resolution media query](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/resolution) would allow developpers to achieve this (assuming the manifest is updated to support the [media](https://www.w3.org/TR/mediaqueries-5/) attribute - is there any issue about it I can reference?)

```json
"icons": [
  {
    "src": "img/logo-48-1x.png",
    "sizes": "48x48",
    "media": "@media (min-resolution: 1dpi)",
    "type": "image/png"
  },{
    "src": "img/logo-48-2x.png",
    "sizes": "48x48",
    "media": "@media (min-resolution: 360dpi)"
    "type": "image/png"
  }
]
```

-- 
Reply to this email directly or view it on GitHub:
https://github.com/w3c/manifest/issues/118#issuecomment-1821176340
You are receiving this because you are subscribed to this thread.

Message ID: <w3c/manifest/issues/118/1821176340@github.com>

Received on Tuesday, 21 November 2023 15:44:36 UTC