summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-blending/mix-blend-mode-transformed-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-blending/mix-blend-mode-transformed-ref.html')
-rw-r--r--layout/reftests/css-blending/mix-blend-mode-transformed-ref.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/reftests/css-blending/mix-blend-mode-transformed-ref.html b/layout/reftests/css-blending/mix-blend-mode-transformed-ref.html
new file mode 100644
index 0000000000..e0042d6270
--- /dev/null
+++ b/layout/reftests/css-blending/mix-blend-mode-transformed-ref.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML>
+<head>
+ <style>
+ .outer {
+ transform: scale(0.5) translate(200px, 200px);
+ }
+ .parent {
+ width: 200px;
+ height: 200px;
+ isolation: isolate;
+ }
+ .child {
+ width: 200px;
+ height: 200px;
+ background: #7775b6;
+ }
+ </style>
+</head>
+<body>
+ <div class="outer">
+ <div class="parent">
+ <div class="child">
+ </div>
+ </div>
+ </div>
+</body>