Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-color/t421-rgb-hex3-expand-b.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS Test: expansion of #rgb colors to #rrggbb</title>
<link rel="match" href="t421-rgb-hex3-expand-b-ref.html" />
<meta name="assert" content="Test that 3-digit #rgb values are expanded into #rrggbb and not #r0g0b0" />
<style type="text/css"><![CDATA[
table { border-spacing: 0; padding: 0; border: none; }
td { border: none; padding: 0; width: 1.2em; height: 1.2em; }
]]></style>
</head>
<body>
<p>The left and right cells in each row of the following table should be the <em>same</em> color.</p>
<table>
<tr><td style="background: #e92"> </td><td style="background: #ee9922"> </td></tr>
<tr><td style="background: #fb0"> </td><td style="background: #ffbb00"> </td></tr>
<tr><td style="background: #381"> </td><td style="background: #338811"> </td></tr>
</table>
<p>The left and right cells in each row of the following table should be slightly <em>different</em> colors. The right side should be slightly darker than the left.</p>
<table>
<tr><td style="background: #e92"> </td><td style="background: #e09020"> </td></tr>
<tr><td style="background: #fb0"> </td><td style="background: #f0b000"> </td></tr>
<tr><td style="background: #381"> </td><td style="background: #308010"> </td></tr>
</table>
</body>
</html>