1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-blending/mix-blend-mode-child-of-blended-has-opacity-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,40 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 + <head> 1.7 + <title>CSS Reftest Reference</title> 1.8 + <link rel="author" title="Mirela Budăeș" href="mailto:mbudaes@adobe.com"> 1.9 + <style> 1.10 + .parent { 1.11 + opacity: 0.9; 1.12 + background: yellow;/*rgb(255,255,0);*/ 1.13 + margin: 30px; 1.14 + width: 120px; 1.15 + height: 120px; 1.16 + display: inline-block; 1.17 + } 1.18 + .blended { 1.19 + width: 100px; 1.20 + height: 100px; 1.21 + background: aqua;/*rgb(0,255,255);*/ 1.22 + display: inline-block; 1.23 + margin-top: 10px; 1.24 + margin-left: 10px; 1.25 + } 1.26 + .childBlended { 1.27 + background: lime;/*rgb(0,255,0);*/ 1.28 + width: 80px; 1.29 + height: 80px; 1.30 + margin-top: 10px; 1.31 + margin-left: 10px; 1.32 + opacity: 0.99; 1.33 + } 1.34 + </style> 1.35 + </head> 1.36 + <body> 1.37 + <div class="parent"> 1.38 + <div class="blended"> 1.39 + <div class="childBlended"></div> 1.40 + </div> 1.41 + </div> 1.42 + </body> 1.43 +</html>