<body> <!-- empty elements should be marked as empty-->
<table class="empty">
<tr><td class="empty"></td><td>X</td></tr>
<tr><td>X</td><td class="empty"></td></tr>
</table> <!-- collapsed whitespace: space + CR should be marked as empty-->
<table class="empty">
<tr><td class="empty"> </td><td>X</td></tr>
<tr><td>X</td><td class="empty">
</td></tr>
</table> <!-- not collapsed whitespace: space + tab should not be marked as empty-->
<tablestyle="white-space: pre">
<tr><td> </td><td>X</td></tr>
<tr><td>X</td><td> </td></tr>
</table>
<!-- div with whitespace, empty span - should not be marked as empty -->
<table>
<tr><td><div> </div></td><td>X</td></tr>
<tr><td>X</td><td><span></span></td></tr>
</table>
<!--float empty or not should not be marked as empty -->
<table>
<tr><td><divstyle="float:left;">X</div></td><td>X</td></tr>
<tr><td>X</td><td><divstyle="float:left;"></div></td></tr>
</table>
<!-- position:fixed and position:absolute - both should be marked as empty -->
<table class="empty">
<tr><td class="empty"><divstyle="position:fixed; left: 30px;">X</div></td><td>X</td></tr>
<tr><td>X</td><td class="empty"><divstyle="position:absolute; left: 30px;">X</div></td></tr>
</table> <!-- font size 0 makes textframes with no extent -->
<table>
<tr><tdstyle="font-size:0">xxxx</td><td>X</td></tr>
<tr><td>X</td><td><img src=""style="width:0; height:0"></td></tr>
</table>
</body>
</html>
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.