summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-view-transitions/inline-child-with-filter-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-view-transitions/inline-child-with-filter-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-view-transitions/inline-child-with-filter-ref.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-view-transitions/inline-child-with-filter-ref.html b/testing/web-platform/tests/css/css-view-transitions/inline-child-with-filter-ref.html
new file mode 100644
index 0000000000..44a41f1bf9
--- /dev/null
+++ b/testing/web-platform/tests/css/css-view-transitions/inline-child-with-filter-ref.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<title>View transitions: inline child with filter (ref)</title>
+<link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/">
+<link rel="author" href="mailto:vmpstr@chromium.org">
+
+<style>
+body { margin : 0; }
+#target {
+ width: 100px;
+ height: 100px;
+ background-color: grey;
+ overflow-clip-margin: 40px;
+ contain: paint;
+ view-transition-name: target;
+}
+
+#child {
+ position: relative;
+ left: 100px;
+ top: 100px;
+ color: lightgreen;
+ background-color: darkgreen;
+ filter: blur(30px);
+}
+</style>
+
+<div id="target">
+ <span id="child">INLINEBOX</span>
+</div>