Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 1c052be

Browse files
CSS: WPT for backdrop-filter inheritance
backdrop-filter does not inherit, and has initial value 'none'. https://drafts.fxtf.org/filter-effects-2/#BackdropFilterProperty Change-Id: I245e6586d25787a322532b53c8b96a90de7acfa9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1741432 Auto-Submit: Eric Willigers <[email protected]> Commit-Queue: Mason Freed <[email protected]> Reviewed-by: Mason Freed <[email protected]> Cr-Commit-Position: refs/heads/master@{#684913}
1 parent ceedf0a commit 1c052be

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

css/filter-effects/inheritance.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="utf-8">
55
<title>Inheritance of Filter Effects properties</title>
66
<link rel="help" href="https://drafts.fxtf.org/filter-effects/#property-index">
7+
<link rel="help" href="https://drafts.fxtf.org/filter-effects-2/#property-index">
78
<meta name="assert" content="Properties inherit according to the spec.">
89
<meta name="assert" content="Properties have initial values according to the spec.">
910
<script src="/resources/testharness.js"></script>
@@ -15,6 +16,7 @@
1516
<div id="target"></div>
1617
</div>
1718
<script>
19+
assert_not_inherited('backdrop-filter', 'none', 'blur(10px)');
1820
assert_inherited('color-interpolation-filters', 'linearrgb', 'srgb');
1921
assert_not_inherited('filter', 'none', 'blur(10px)');
2022
assert_not_inherited('flood-color', 'rgb(0, 0, 0)', 'rgb(42, 53, 64)');

0 commit comments

Comments
 (0)