fune/testing/web-platform/tests/css/css-overflow/overflow-no-interpolation.html
Joey Arhar 335055f15e Bug 1820879 [wpt PR 38860] - CSSTransitionDiscrete: Fix overflow related crashes, a=testonly
Automatic update from web-platform-tests
CSSTransitionDiscrete: Fix overflow related crashes

Bug: 1399631, 1413556
Change-Id: I42594f18bff132fcb52814921baa3813b9fbfc3b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4316486
Reviewed-by: Anders Hartvoll Ruud <andruud@chromium.org>
Commit-Queue: Joey Arhar <jarhar@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1119401}

--

wpt-commits: 8852d6723a0cb606e536d8d515db89f90c98d164
wpt-pr: 38860
2023-04-12 11:20:02 +00:00

27 lines
612 B
HTML

<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<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>