summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/hsla-clamp-negative-saturation-ref.html
blob: bbf5c3b037d071467c1286941b3edf5a79bf6ce7 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<style>
  body { background: white; color: black; }
  table { border-spacing: 0 2px; padding: 0; border: none; }
  td { border: none; padding: 0; height: 1.2em; }
</style>
<body>
  <p>Every row in this table should have both columns the same color:</p>
  <table>
    <tr>
      <th style="background:white; color: black">Column 1</th>
      <th style="background:black; color: white">Column 2</th>
    </tr>
    <tr>
      <td colspan='2' style="background: rgb(194, 194, 194)">&nbsp;</td>
    </tr>
    <tr>
      <td colspan='2' style="background: rgb(194, 194, 194)">&nbsp;</td>
    </tr>
  </table>
</body>