tenfourfox/layout/reftests/css-blending/background-blending-image-color-gif.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

30 lines
377 B
HTML

<!DOCTYPE HTML>
<html>
<style>
.reftest {
width: 100px;
height: 100px;
background-size: 100px 100px, 100px 100px;
background-repeat: no-repeat;
}
.blend {
background-color: rgb(255,255,0);
background-blend-mode: difference;
}
.gif {
background-image: url('as-image/red_green.gif');
}
</style>
<body>
<div class="reftest blend gif"></div>
</body>
</html>