summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/t32-opacity-offscreen-multiple-boxes-1-c.xht
blob: 5920d305e53a968ca58764e99db86e8a85d04e68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!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: opacity</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/#transparency" />
		<link rel="match" href="t32-opacity-offscreen-multiple-boxes-1-c-ref.html" />
		<meta name="assert" content="Opacity is group opacity over elements (not boxes)." />
		<style type="text/css"><![CDATA[

		body { background: white; }

		div.test { margin: 1em; line-height: 0.5em; font-family: monospace; }
		div.test span { opacity: 0.4; background: blue; color: blue; }

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

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

		<p>The following two boxes should be the same color:</p>

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

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

	</body>
</html>