Skip to content

Commit

Permalink
CSSTransitionDiscrete: Fix overflow related crashes
Browse files Browse the repository at this point in the history
Bug: 1399631, 1413556
Change-Id: I42594f18bff132fcb52814921baa3813b9fbfc3b
  • Loading branch information
josepharhar authored and chromium-wpt-export-bot committed Mar 18, 2023
1 parent e1dabe0 commit 78ca540
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions css/css-overflow/overflow-no-interpolation.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<link rel=author href="mailto:[email protected]">
<link rel=help href="https://github.com/w3c/csswg-drafts/issues/4441">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>

<body>
<script>
test_no_interpolation({
property: 'overflow-clip-margin',
from: 'initial',
to: '123px'
});

test_no_interpolation({
property: 'overflow-x',
from: 'hidden',
to: 'visible'
});

test_no_interpolation({
property: 'overflow-y',
from: 'hidden',
to: 'visible'
});
</script>

0 comments on commit 78ca540

Please sign in to comment.