https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b57eb2f370c46465baf71c3422ecb945cfcea7a4 authored by Darren Shen on 19 March 2018, 06:54:15 UTC
[css-typed-om] Add support for min/max-width/height.
Tip revision: b57eb2f
t422-rgba-onscreen-b.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<title>CSS Test: rgba() overpainting</title>
		<link rel="author" title="L. David Baron" href="https://dbaron.org/" />
		<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
		<link rel="help" href="http://www.w3.org/TR/css3-color/#rgba-color" />
		<link rel="match" href="t422-rgba-onscreen-b-ref.html" />
		<meta name="flags" content="" />
		<meta name="assert" content="Test that rgba() does not behave like opacity and draw in an offscreen buffer." />
		<style type="text/css"><![CDATA[
		html, body { background: white; }
		table { border-spacing: 0 2px; padding: 0; border: none; }
		td { border: none; padding: 0; }

		td, div { 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: rgba(0, 0, 255, 0.2)">&nbsp;</td>
			<td style="background: rgb(204, 204, 255)">&nbsp;</td>
		</tr>
		<tr>
			<td style="background: rgba(0, 0, 255, 0.2)"><div style="background: inherit">&nbsp;</div></td>
			<td style="background: rgb(163, 163, 255)">&nbsp;</td>
		</tr>
		<tr>
			<td style="background: rgba(0, 0, 255, 0.4)">&nbsp;</td>
			<td style="background: rgb(153, 153, 255)">&nbsp;</td>
		</tr>
		<tr>
			<td style="background: rgba(0, 0, 255, 0.4)"><div style="background: inherit">&nbsp;</div></td>
			<td style="background: rgb(92, 92, 255)">&nbsp;</td>
		</tr>
		<tr>
			<td style="background: rgba(0, 0, 255, 0.6)">&nbsp;</td>
			<td style="background: rgb(102, 102, 255)">&nbsp;</td>
		</tr>
		<tr>
			<td style="background: rgba(0, 0, 255, 0.6)"><div style="background: inherit">&nbsp;</div></td>
			<td style="background: rgb(41, 41, 255)">&nbsp;</td>
		</tr>
		<tr>
			<td style="background: rgba(0, 0, 255, 0.8)">&nbsp;</td>
			<td style="background: rgb(51, 51, 255)">&nbsp;</td>
		</tr>
		<tr>
			<td style="background: rgba(0, 0, 255, 0.8)"><div style="background: inherit">&nbsp;</div></td>
			<td style="background: rgb(10, 10, 255)">&nbsp;</td>
		</tr>
	</table>

	</body>
</html>
back to top