update version and make test page protocol agnostic

This commit is contained in:
Nicolas Cusan
2019-07-12 15:23:12 +02:00
parent c906f09a5b
commit 135c89d2bc
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
/*! destyle.css v1.0.6 | MIT License | https://github.com/nicolas-cusan/destyle.css */ /*! destyle.css v1.0.7 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model /* Reset box-model
========================================================================== */ ========================================================================== */

View File

@@ -245,12 +245,12 @@
<header><h2>Images</h2></header> <header><h2>Images</h2></header>
<div> <div>
<h3>No <code>&lt;figure&gt;</code> element</h3> <h3>No <code>&lt;figure&gt;</code> element</h3>
<p><img src="http://placekitten.com/480/480" alt="Image alt text"></p> <p><img src="//placekitten.com/480/480" alt="Image alt text"></p>
<h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3> <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
<figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure> <figure><img src="//placekitten.com/420/420" alt="Image alt text"></figure>
<h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3> <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
<figure> <figure>
<img src="http://placekitten.com/420/420" alt="Image alt text"> <img src="//placekitten.com/420/420" alt="Image alt text">
<figcaption>Here is a caption for this image.</figcaption> <figcaption>Here is a caption for this image.</figcaption>
</figure> </figure>
</div> </div>