features/html/static_elements.html in druid-ts-1.2.0 vs features/html/static_elements.html in druid-ts-1.2.1
- old
+ new
@@ -40,20 +40,10 @@
var ctx=c.getContext('2d');
ctx.fillStyle="#FF0000";
ctx.fillRect=(0,0,150,75);
</script>
- <audio controls id="audio" name="audio" class="audio">
- <!-- <source src="04-Death_Becomes_Fur.mp4" type='audio/mp4'/> -->
- <!-- <source src="04-Death_Becomes_Fur.oga" type='audio/ogg; codecs=vorbis'/> -->
- <p>Your user agent does not support the HTML5 Audio element.</p>
- </audio>
-
- <video width="320" height="240" controls="controls" id="video" name="video" class="video">
- Your Browser does not support the video tag.
- </video>
-
<svg width="100" height="100" id="the_svg">
<circle cx="50" cy="50" r="40" fill="red" stroke="blue" stroke-width="5" />
</svg>
<a href="success.html" id="link_id" name="link_name" class="link_class" title="link_title" >Google Search</a>
@@ -94,11 +84,11 @@
<th>Table</th>
<th>Header</th>
</tr>
</thead>
<tbody>
- <tr>
+ <tr id="tr_id" class='tr_class'>
<td>Data1</td>
<td>Data2</td>
</tr>
<tr>
<td>Data3</td>
@@ -173,10 +163,11 @@
<h5 id="h5_id" class="h5_class" name="h5_name">h5's are cool</h5>
<h6 id="h6_id" class="h6_class" name="h6_name">h6's are cool</h6>
<a href="success.html" target="_blank">New Window</a>
<input type="text" id="onfocus_text_field" onfocus="document.getElementById('onfocus_test').innerHTML = 'changed by onfocus event'" />
+ <input type="text" id="unfocus_text_field" />
<div id="onfocus_test"></div>
<div id="parent_div">
<a href="success.html" id="child">Success</a>
</div>
@@ -192,7 +183,10 @@
<figure id='figure_id'>
<img src="images/img_pulpit.jpg" alt="The Pulpit Rock" width="304" height="228">
</figure>
This text have <b id="b_id" class="b_class" name="b_name">some text in bold</b>
+ This text have <i id="i_id" class="i_class" name="i_name">some text in italic</i>
+ <input id="input_button" type="button" value="This button is a input" />
+ <img src="images/non_existent.jpg" id="non_existent" >
</body>
</html>