gecko/layout/reftests/css-blending/mix-blend-mode-child-of-blended-has-opacity-ref.html
Horia Iosif Olaru a1363f590b Bug 952051 - Add reftests. r=roc
* Add a reftest for checking that blending takes place between a blended child element that is clipped by a rounded rect and its parent element (which has overflow hidden, and rounded corners).
* Add a reftest to check the behavior described in bug 947121 no longer reproduces.
2014-02-27 11:56:48 -05:00

41 lines
839 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Mirela Budăeș" href="mailto:mbudaes@adobe.com">
<style>
.parent {
opacity: 0.9;
background: yellow;/*rgb(255,255,0);*/
margin: 30px;
width: 120px;
height: 120px;
display: inline-block;
}
.blended {
width: 100px;
height: 100px;
background: aqua;/*rgb(0,255,255);*/
display: inline-block;
margin-top: 10px;
margin-left: 10px;
}
.childBlended {
background: lime;/*rgb(0,255,0);*/
width: 80px;
height: 80px;
margin-top: 10px;
margin-left: 10px;
opacity: 0.99;
}
</style>
</head>
<body>
<div class="parent">
<div class="blended">
<div class="childBlended"></div>
</div>
</div>
</body>
</html>