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 @@ ...@@ -2,11 +2,11 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<style> <style>
.parent { .parent {
-webkit-column-gap: 90px; column-gap: 90px;
} }
.target { .target {
-webkit-column-count: 2; column-count: 2;
-webkit-column-gap: 10px; column-gap: 10px;
} }
.expected div { .expected div {
opacity: 0.7; opacity: 0.7;
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<script src='resources/interpolation-test.js'></script> <script src='resources/interpolation-test.js'></script>
<script> <script>
assertInterpolation({ assertInterpolation({
property: '-webkit-column-gap', property: 'column-gap',
from: neutralKeyframe, from: neutralKeyframe,
to: '40px', to: '40px',
}, [ }, [
...@@ -39,13 +39,13 @@ assertInterpolation({ ...@@ -39,13 +39,13 @@ assertInterpolation({
]); ]);
assertNoInterpolation({ assertNoInterpolation({
property: '-webkit-column-gap', property: 'column-gap',
from: 'initial', from: 'initial',
to: '20px', to: '20px',
}); });
assertInterpolation({ assertInterpolation({
property: '-webkit-column-gap', property: 'column-gap',
from: 'inherit', from: 'inherit',
to: '20px', to: '20px',
}, [ }, [
...@@ -58,23 +58,23 @@ assertInterpolation({ ...@@ -58,23 +58,23 @@ assertInterpolation({
]); ]);
assertNoInterpolation({ assertNoInterpolation({
property: '-webkit-column-gap', property: 'column-gap',
from: 'unset', from: 'unset',
to: '20px', to: '20px',
}); });
assertNoInterpolation({ assertNoInterpolation({
property: '-webkit-column-gap', property: 'column-gap',
from: 'normal', from: 'normal',
to: '20px', to: '20px',
}); });
assertInterpolation({ assertInterpolation({
property: '-webkit-column-gap', property: 'column-gap',
from: '0px', from: '0px',
to: '100px' 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, is: '0'},
{at: 0.3, is: '30px'}, {at: 0.3, is: '30px'},
{at: 0.6, is: '60px'}, {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