Commit cc0315c4 authored by Morten Stenshorne's avatar Morten Stenshorne Committed by Commit Bot

Rename and unprefix animations/interpolation/webkit-column-gap-interpolation.html

As promised in

https: //chromium-review.googlesource.com/c/chromium/src/+/847476#message-b6237dac069f8501f2ece3d48bff044e49a5260e
Change-Id: I27b97ae09db0a26660f7d44df8082dac5c8da250
Reviewed-on: https://chromium-review.googlesource.com/848912Reviewed-by: default avatarEric Willigers <ericwilligers@chromium.org>
Commit-Queue: Eric Willigers <ericwilligers@chromium.org>
Cr-Commit-Position: refs/heads/master@{#526672}
parent a30e0f0f
......@@ -2,11 +2,11 @@
<meta charset="UTF-8">
<style>
.parent {
-webkit-column-gap: 90px;
column-gap: 90px;
}
.target {
-webkit-column-count: 2;
-webkit-column-gap: 10px;
column-count: 2;
column-gap: 10px;
}
.expected div {
opacity: 0.7;
......@@ -26,7 +26,7 @@
<script src='resources/interpolation-test.js'></script>
<script>
assertInterpolation({
property: '-webkit-column-gap',
property: 'column-gap',
from: neutralKeyframe,
to: '40px',
}, [
......@@ -39,13 +39,13 @@ assertInterpolation({
]);
assertNoInterpolation({
property: '-webkit-column-gap',
property: 'column-gap',
from: 'initial',
to: '20px',
});
assertInterpolation({
property: '-webkit-column-gap',
property: 'column-gap',
from: 'inherit',
to: '20px',
}, [
......@@ -58,23 +58,23 @@ assertInterpolation({
]);
assertNoInterpolation({
property: '-webkit-column-gap',
property: 'column-gap',
from: 'unset',
to: '20px',
});
assertNoInterpolation({
property: '-webkit-column-gap',
property: 'column-gap',
from: 'normal',
to: '20px',
});
assertInterpolation({
property: '-webkit-column-gap',
property: 'column-gap',
from: '0px',
to: '100px'
}, [
{at: -0.3, is: '0'}, // -webkit-column-gap can't be negative.
{at: -0.3, is: '0'}, // column-gap can't be negative.
{at: 0, is: '0'},
{at: 0.3, is: '30px'},
{at: 0.6, is: '60px'},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment