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

28 lines
423 B
HTML

<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<style>
.reftest {
width: 100px;
height: 100px;
}
.image {
background-image: url(as-image/green100x100.png);
}
.color {
background-color: rgb(0, 255, 0);
}
body {
background-color: rgb(0, 0, 255);
}
</style>
<div class="reftest image"></div>
<div class="reftest color"></div>
</html>