summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/tables/table-bordercolor-001.html
blob: 014abe3567a7ab5dd15cf4024753abaeb4e32a62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!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>