Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<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="match" href="t32-opacity-clamping-1.0-b-ref.html" />
<meta name="assert" content="Opacity values greater than 1.0 are clamped to 1.0" />
<style type="text/css"><![CDATA[
/* make sure clamped rather than a parser error */
#two, #three, #four, #five, #six { opacity: 0.0; }
#two { opacity: 1.0; }
#three { opacity: 1.1; }
#four { opacity: 1.9; }
#five { opacity: 30; }
#six { opacity: 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>