layout/reftests/css-blending/background-blending-isolation-parent-child-image.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/css-blending/background-blending-isolation-parent-child-image.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,29 @@
     1.4 +<!--
     1.5 +     Any copyright is dedicated to the Public Domain.
     1.6 +     http://creativecommons.org/publicdomain/zero/1.0/
     1.7 +-->
     1.8 +<!DOCTYPE HTML>
     1.9 +<html>
    1.10 +<style>
    1.11 +.reftest {
    1.12 +  width: 100px;
    1.13 +  height: 100px;
    1.14 +}
    1.15 +
    1.16 +.parent {
    1.17 +  background-color: rgb(255, 255, 0);
    1.18 +  background-blend-mode: screen;
    1.19 +}
    1.20 +
    1.21 +.child {
    1.22 +  background-image: url(as-image/green100x100.png);
    1.23 +  background-blend-mode: difference;
    1.24 +}
    1.25 +
    1.26 +</style>
    1.27 +<body>
    1.28 +  <div class="reftest parent">
    1.29 +    <div class="reftest child"></div>
    1.30 +  </div>
    1.31 +</body>
    1.32 +</html>
    1.33 \ No newline at end of file

mercurial