https://github.com/web-platform-tests/wpt
Raw File
Tip revision: dc4d765410fee7b5e4b0d638c12e881a806f55a8 authored by Anne van Kesteren on 05 April 2018, 13:53:52 UTC
add scenario from smaug
Tip revision: dc4d765
t422-rgba-clamping-a1.0-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() colors</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-clamping-a1.0-b-ref.html" />
		<meta name="flags" content="" />
		<meta name="assert" content="Alpha components of rgba() colors greater than 1 are clamped to 1." />
		<style type="text/css"><![CDATA[
			html, body { background: white; }
			#two, #three, #four, #five, #six { color: rgba(0, 0, 0, 0); }

			#two { color: rgba(0, 0, 0, 1.0); }
			#three { color: rgba(0, 0, 0, 1.1); }
			#four { color: rgba(0, 0, 0, 1.9); }
			#five { color: rgba(0, 0, 0, 30); }
			#six { color: rgba(0, 0, 0, 7439.79); }
		]]></style>
	</head>
	<body>
		<p id="one">There should be six lines of text on this page, all the same color. [1 of 6]</p>
		<p id="two">There should be six lines of text on this page, all the same color. [2 of 6]</p>
		<p id="three">There should be six lines of text on this page, all the same color. [3 of 6]</p>
		<p id="four">There should be six lines of text on this page, all the same color. [4 of 6]</p>
		<p id="five">There should be six lines of text on this page, all the same color. [5 of 6]</p>
		<p id="six">There should be six lines of text on this page, all the same color. [6 of 6]</p>
	</body>
</html>
back to top