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/hsl-clamp-negative-saturation.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<html>
	<head>
		<title>CSS Test: hsl() clamp negative saturation values</title>
		<link rel="match" href="hsl-clamp-negative-saturation-ref.html" />
		<meta name="assert" content="Test clamping of negative saturation values in hsl() functions." />
		<style type="text/css">
		table { border-spacing: 0 2px; padding: 0; border: none; }
		td { border: none; padding: 0; height: 1.2em; }
		</style>
	</head>
	<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 style="background: hsl(0, -50%, 40%)"> </td>
			<td style="background: rgb(102, 102, 102)"> </td>
		</tr>
		<tr>
			<td style="background: hsl(30, -50%, 60%)"> </td>
			<td style="background: rgb(153, 153, 153)"> </td>
		</tr>
	</table>
	</body>
</html>