summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-images/cross-fade-target-alpha-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-images/cross-fade-target-alpha-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-images/cross-fade-target-alpha-ref.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-images/cross-fade-target-alpha-ref.html b/testing/web-platform/tests/css/css-images/cross-fade-target-alpha-ref.html
new file mode 100644
index 0000000000..e66cfb0ae5
--- /dev/null
+++ b/testing/web-platform/tests/css/css-images/cross-fade-target-alpha-ref.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>CSS reftest Reference</title>
+ <style>
+ .outer {
+ display:block;
+ width: 500px;
+ height: 500px;
+ padding: 50px;
+ background: linear-gradient(90deg, red, green);
+ }
+ .inner {
+ display: block;
+ width: 100%;
+ height: 100%;
+ color: white;
+ background: linear-gradient(#e66465, #9198e5);
+ opacity: 0.6;
+ }
+ </style>
+ </head>
+ <p>The inner gradient should be (in total) 60% covering over the outer.</p>
+ <div class="outer">
+ <div class="inner">
+ </div>
+ </div>
+</html>