diff options
Diffstat (limited to 'layout/reftests/css-blending/background-blending-image-color-gif.html')
-rw-r--r-- | layout/reftests/css-blending/background-blending-image-color-gif.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/layout/reftests/css-blending/background-blending-image-color-gif.html b/layout/reftests/css-blending/background-blending-image-color-gif.html new file mode 100644 index 000000000..c68d61732 --- /dev/null +++ b/layout/reftests/css-blending/background-blending-image-color-gif.html @@ -0,0 +1,29 @@ +<!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> + + + + |