blob: 014abe3567a7ab5dd15cf4024753abaeb4e32a62 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test for table bordercolor attribute behaving like border-color property</title>
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org/">
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#tables-2">
<link rel="match" href="table-bordercolor-001-ref.html">
<meta name="assert" content="bordercolor is treated as a presentation hint, equivalent to setting the border-color property">
<style>
table { margin: 5px }
</style>
<table bordercolor="red">
<td>I should not have a border.</td>
</table>
<table style="border-color: red">
<td>I should not have a border.</td>
</table>
<table bordercolor="red" style="border-width: 10px">
<td>I should not have a border.</td>
</table>
<table style="border-color: red; border-width: 10px">
<td>I should not have a border.</td>
</table>
<table bordercolor="lime" style="border-style: solid">
<td>I should have a border.</td>
</table>
<table style="border-color: lime; border-style: solid">
<td>I should have a border.</td>
</table>