mirror of
https://github.com/cbracco/html5-test-page.git
synced 2025-08-23 06:02:48 +02:00
Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
3b85be264e | ||
|
d4d5224177 | ||
|
23c3d5f7c9 | ||
|
ffd3e00512 | ||
|
3a0973f6fa | ||
|
58308fc6bd | ||
|
f54b5040be | ||
|
c7d89818d6 |
@@ -1,3 +1,11 @@
|
|||||||
|
# 0.8.0 (March 19, 2018)
|
||||||
|
|
||||||
|
- Add test for HTML comments (thanks @ep00ch!).
|
||||||
|
|
||||||
|
# 0.7.1 (April 5, 2016)
|
||||||
|
|
||||||
|
- Add missing form button types (thanks @gnowland!).
|
||||||
|
|
||||||
# 0.6.2 (March 14, 2016)
|
# 0.6.2 (March 14, 2016)
|
||||||
|
|
||||||
- Minor formatting change (thanks @gilluminate!).
|
- Minor formatting change (thanks @gilluminate!).
|
||||||
|
27
index.html
27
index.html
@@ -24,6 +24,7 @@
|
|||||||
<li><a href="#text__tables">Tabular data</a></li>
|
<li><a href="#text__tables">Tabular data</a></li>
|
||||||
<li><a href="#text__code">Code</a></li>
|
<li><a href="#text__code">Code</a></li>
|
||||||
<li><a href="#text__inline">Inline elements</a></li>
|
<li><a href="#text__inline">Inline elements</a></li>
|
||||||
|
<li><a href="#text__comments">HTML Comments</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
@@ -214,8 +215,18 @@
|
|||||||
</div>
|
</div>
|
||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
|
<article id="text__comments">
|
||||||
|
<header><h1>HTML Comments</h1></header>
|
||||||
|
<div>
|
||||||
|
<p>There is comment here: <!--This comment should not be displayed--></p>
|
||||||
|
<p>There is a comment spanning multiple tags and lines below here.</p>
|
||||||
|
<!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
|
||||||
|
<p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
|
||||||
|
<p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
|
||||||
|
</div>
|
||||||
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="embedded">
|
<section id="embedded">
|
||||||
<header><h1>Embedded content</h1></header>
|
<header><h1>Embedded content</h1></header>
|
||||||
<article id="embedded__images">
|
<article id="embedded__images">
|
||||||
@@ -391,10 +402,16 @@
|
|||||||
<fieldset id="forms__action">
|
<fieldset id="forms__action">
|
||||||
<legend>Action buttons</legend>
|
<legend>Action buttons</legend>
|
||||||
<p>
|
<p>
|
||||||
<input type="submit" value="Input">
|
<input type="submit" value="<input type=submit>">
|
||||||
<button type="submit">Button</button>
|
<input type="button" value="<input type=button>">
|
||||||
<input type="reset" value="Reset">
|
<input type="reset" value="<input type=reset>">
|
||||||
<input type="submit" value="Disabled" disabled>
|
<input type="submit" value="<input disabled>" disabled>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<button type="submit"><button type=submit></button>
|
||||||
|
<button type="button"><button type=button></button>
|
||||||
|
<button type="reset"><button type=reset></button>
|
||||||
|
<button type="button" disabled><button disabled></button>
|
||||||
</p>
|
</p>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<p><a href="#top">[Top]</a></p>
|
<p><a href="#top">[Top]</a></p>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "html5-test-page",
|
"name": "html5-test-page",
|
||||||
"version": "0.6.2",
|
"version": "0.8.0",
|
||||||
"description": "A page filled with common HTML elements to be used for testing purposes.",
|
"description": "A page filled with common HTML elements to be used for testing purposes.",
|
||||||
"main": "index.html",
|
"main": "index.html",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Reference in New Issue
Block a user