https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5eadadabcab4e5c980c30b40049832c9e5d2af4e authored by pyup-bot on 06 April 2018, 13:10:11 UTC
Update mozrunner from 6.14 to 6.15
Tip revision: 5eadada
t425-hsla-onscreen-multiple-boxes-c.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: hsla() 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/#hsla-color" />
		<link rel="match" href="t422-rgba-onscreen-multiple-boxes-c-ref.html" />
		<meta name="flags" content="" />
		<meta name="assert" content="Test that hsla() does not behave like opacity and draw in an offscreen buffer." />
		<style type="text/css"><![CDATA[

		body { background: white; }

		div.test { margin: 1em; line-height: 0; font-family: monospace; }
		div.test span { background: hsla(240, 100%, 50%, 0.4); color: hsla(0, 100%, 50%, 0); }

		div.ref { height: 1em; width: 5em; background: rgb(92, 92, 255); }

		]]></style>
	</head>
	<body>

		<p>These two rectangles should be the same color:</p>

		<div class="test"><span>XXXXX<br/>XXXXX</span></div>

		<div class="ref"></div>

	</body>
</html>
back to top