Skip to content

Commit

Permalink
Merge pull request #490 from w3c/screenshots
Browse files Browse the repository at this point in the history
feat(screenshots): Add screenshots member (closes #477)
  • Loading branch information
kenchris committed Aug 25, 2016
2 parents 973a27e + 80463ad commit 1611a49
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion index.html
Expand Up @@ -156,7 +156,16 @@ <h3>
"display": "fullscreen",
"orientation": "landscape",
"theme_color": "aliceblue",
"background_color": "red"
"background_color": "red",
"screenshots": [{
"src": "screenshots/in-game-1x.jpg",
"sizes": "640x480",
"type": "image/jpeg"
},{
"src": "screenshots/in-game-2x.jpg",
"sizes": "1280x920",
"type": "image/jpeg"
}]
}
</pre>
</section>
Expand Down Expand Up @@ -1190,6 +1199,11 @@ <h3>
<code>background_color</code> member</a> with <var>manifest</var> as
argument.
</li>
<li>Let <var>screenshots</var> of <var>parsed manifest</var> be the
result of running the <a>steps for processing an array of images</a>
with <var>manifest</var>, <var>manifest URL</var>, and "screenshots"
as arguments.
</li>
<li>Return <var>parsed manifest</var>.
</li>
</ol>
Expand Down Expand Up @@ -2167,6 +2181,16 @@ <h3>
</li>
</ol>
</section>
<section>
<h3>
<code title="">screenshots</code> member
</h3>
<p>
The <dfn id="member-screenshots"><code>screenshots</code>
member</dfn> is an <a>array</a> of <a>image objects</a> represent the
web application in common usage scenarios.
</p>
</section>
</section>
<section>
<h2>
Expand Down

0 comments on commit 1611a49

Please sign in to comment.