summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-sizing/animation/width-interpolation.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-sizing/animation/width-interpolation.html')
-rw-r--r--testing/web-platform/tests/css/css-sizing/animation/width-interpolation.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-sizing/animation/width-interpolation.html b/testing/web-platform/tests/css/css-sizing/animation/width-interpolation.html
index d165c994b5..b229b5bc5e 100644
--- a/testing/web-platform/tests/css/css-sizing/animation/width-interpolation.html
+++ b/testing/web-platform/tests/css/css-sizing/animation/width-interpolation.html
@@ -97,6 +97,12 @@ test_interpolation({
{at: 1.5, expect: '145px'}
]);
+test_no_interpolation({
+ property: 'width',
+ from: 'auto',
+ to: '40px',
+});
+
// The "vw" unit equals to 1% of the width of the viewport's initial containing
// block:
// https://developer.mozilla.org/en-US/docs/Web/CSS/length
@@ -123,5 +129,42 @@ test_interpolation({
{at: 1, expect: calc(1)},
{at: 1.5, expect: calc(1.5)}
]);
+
+test_no_interpolation({
+ property: 'width',
+ from: 'auto',
+ to: 'fit-content',
+});
+
+test_no_interpolation({
+ property: 'width',
+ from: 'stretch',
+ to: 'auto',
+});
+
+test_no_interpolation({
+ property: 'width',
+ from: '30px',
+ to: 'fit-content',
+});
+
+test_no_interpolation({
+ property: 'width',
+ from: 'max-content',
+ to: 'min-content',
+});
+
+test_no_interpolation({
+ property: 'width',
+ from: 'max-content',
+ to: neutralKeyframe,
+});
+
+test_no_interpolation({
+ property: 'width',
+ from: neutralKeyframe,
+ to: 'min-content',
+});
+
</script>
</body>