gecko-dev/testing/web-platform/tests/css/css-position/animations/left-interpolation.html
Stephen McGruer a9d622cb55 Bug 1574464 [wpt PR 18496] - Port {top, left, right, bottom}-interpolation.html to WPT, a=testonly
Automatic update from web-platform-tests
Port {top, left, right, bottom}-interpolation.html to WPT

Bug: 900581
Change-Id: Ib549a18ca17223ee252b2171194e25357f0ef45f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1758133
Reviewed-by: Xida Chen <xidachen@chromium.org>
Commit-Queue: Stephen McGruer <smcgruer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#687647}

--

wpt-commits: f47ff91b02764da1fe2ac37e788648f1b1366fcd
wpt-pr: 18496
2019-08-23 16:40:01 +00:00

76 lines
1.4 KiB
HTML

<!DOCTYPE html>
<meta charset="UTF-8">
<link rel="help" href="https://drafts.csswg.org/css-position-3/#propdef-left">
<meta name="test" content="left supports animation as a length or percentage">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>
<style>
.parent {
position: relative;
left: 30px;
}
.target {
position: relative;
width: 10px;
height: 10px;
background-color: black;
left: 10px;
}
.expected {
background-color: green;
}
</style>
<body></body>
<script>
test_interpolation({
property: 'left',
from: neutralKeyframe,
to: '20px',
}, [
{at: -0.3, expect: '7px'},
{at: 0, expect: '10px'},
{at: 0.5, expect: '15px'},
{at: 1, expect: '20px'},
{at: 1.5, expect: '25px'},
]);
test_no_interpolation({
property: 'left',
from: 'initial',
to: '20px',
});
test_interpolation({
property: 'left',
from: 'inherit',
to: '20px',
}, [
{at: -0.3, expect: '33px'},
{at: 0, expect: '30px'},
{at: 0.5, expect: '25px'},
{at: 1, expect: '20px'},
{at: 1.5, expect: '15px'},
]);
test_no_interpolation({
property: 'left',
from: 'unset',
to: '20px',
});
test_interpolation({
property: 'left',
from: '-10px',
to: '10px'
}, [
{at: -0.3, expect: '-16px'},
{at: 0, expect: '-10px'},
{at: 0.5, expect: '0px'},
{at: 1, expect: '10px'},
{at: 1.5, expect: '20px'}
]);
</script>