Skip to content

Commit

Permalink
chore(tests) fix test that didn't merge correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
tivie committed May 14, 2015
1 parent 612c8ce commit 509a1d3
Showing 1 changed file with 54 additions and 1 deletion.
55 changes: 54 additions & 1 deletion test/cases/html5-strutural-tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,57 @@ me</article>
ignore me
</aside>

the end
the end

<table class="test">
<tr>
<td>Foo</td>
</tr>
<tr>
<td>Bar</td>
</tr>
</table>

<table class="test">
<thead>
<tr>
<td>Foo</td>
</tr>
</thead>
<tr>
<td>Bar</td>
</tr>
<tfoot>
<tr>
<td>Bar</td>
</tr>
</tfoot>
</table>

<audio class="podcastplayer" controls>
<source src="foobar.mp3" type="audio/mp3" preload="none"></source>
<source src="foobar.off" type="audio/ogg" preload="none"></source>
</audio>

<video src="foo.ogg">
<track kind="subtitles" src="foo.en.vtt" srclang="en" label="English">
<track kind="subtitles" src="foo.sv.vtt" srclang="sv" label="Svenska">
</video>

<address>My street</address>

<canvas id="canvas" width="300" height="300">
Sorry, your browser doesn't support the &lt;canvas&gt; element.
</canvas>

<figure>
<img src="mypic.png" alt="An awesome picture">
<figcaption>Caption for the awesome picture</figcaption>
</figure>

<hgroup>
<h1>Main title</h1>
<h2>Secondary title</h2>
</hgroup>

<output name="result"></output>

0 comments on commit 509a1d3

Please sign in to comment.