Skip to content

Commit

Permalink
CSSTransitionDiscrete: Fix overflow related crashes
Browse files Browse the repository at this point in the history
There are still some tests failing for transitions from initial. Maybe
they have the same root cause as the failing initial tests for custom
properties...?

Bug: 1399631, 1413556
Change-Id: I42594f18bff132fcb52814921baa3813b9fbfc3b
  • Loading branch information
josepharhar authored and chromium-wpt-export-bot committed Mar 14, 2023
1 parent 597c968 commit c124fca
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions css/css-overflow/overflow-no-interpolation.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<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: 'initial',
to: 'auto'
});

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

0 comments on commit c124fca

Please sign in to comment.