diff options
Diffstat (limited to 'layout/reftests/css-blending/background-blending-isolation-ref.html')
-rw-r--r-- | layout/reftests/css-blending/background-blending-isolation-ref.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/css-blending/background-blending-isolation-ref.html b/layout/reftests/css-blending/background-blending-isolation-ref.html new file mode 100644 index 0000000000..8b1a50d534 --- /dev/null +++ b/layout/reftests/css-blending/background-blending-isolation-ref.html @@ -0,0 +1,27 @@ +<!-- + 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> |