Re: [w3c/manifest] scope="../" should be invalid (#551)

So the way it works today (as specced):

Every single URL within the manifest file is relative to the location of that file (like it would be in a JS, HTML or CSS file)

|  **manifest url** | **start_url** | **scope attr** | **calculated scope** | **caluclated start_url** |
|  ------ | ------ | ------ | ------ | ------ | ------ |
|  /tech-today/manifest.json | ./index.html | undefined | / | /tech-today/index.html |
|  /tech-today/manifest.json | ./index.html | ../ | / | /tech-today/index.html |
|  /tech-today/manifest.json | / | / | / | /index.html |
|  /tech-today/manifest.json | / | undefined | / | / |
|  /tech-today/manifest.json | ./tech-today/index.html | undefined | / | /tech-today/tech-today/index.html |
|  /manifest.json | ./tech-today/index.html | undefined | / | /tech-today/index.html |
|  /manifest.json | /tech-today/index.html | tech-today | /tech-today/ | /tech-today/index.html |

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

Received on Wednesday, 8 February 2017 11:38:11 UTC