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-b.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS Test: opacity</title>
<link rel="match" href="t32-opacity-offscreen-b-ref.html" />
<meta name="assert" content="That opacity specifies compositing the contents as a single offscreen buffer." />
<style type="text/css"><![CDATA[
body { background: white; }
div { width: 5em; height: 1em; }
div.color { background: blue; }
div.top { margin: 2px 0; opacity: 0.4; }
div.ref { opacity: 1.0; background: rgb(153, 153, 255); }
]]></style>
</head>
<body>
<p>The following five boxes should be the same color:</p>
<div class="top color"></div>
<div class="top color"><div class="color"></div></div>
<div class="top"><div class="color"></div></div>
<div class="top"><div class="color"><div class="color"></div></div></div>
<div class="top ref"></div>
</body>
</html>