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/t32-opacity-offscreen-multiple-boxes-1-c.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS Test: opacity</title>
<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>