mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
Automatic update from web-platform-tests Port css-position related composition tests to external Chrome and Firefox pass all Bug: 1034538 Change-Id: I8f7de63e8c10ae3c6730bcd577de82cfce39a0c1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1985120 Reviewed-by: Xida Chen <xidachen@chromium.org> Commit-Queue: Hao Sheng <haozhes@chromium.org> Cr-Commit-Position: refs/heads/master@{#729448} -- wpt-commits: 57119ba2c3177038126580db1fd19224c4eef771 wpt-pr: 21006 --HG-- rename : testing/web-platform/tests/css/css-position/animation/position-interpolation.html => testing/web-platform/tests/css/css-position/animations/position-interpolation.html
78 lines
1.7 KiB
HTML
78 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset="UTF-8">
|
|
<title>right composition</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-position-3/#propdef-right">
|
|
<meta name="assert" content="right support animation">
|
|
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/interpolation-testcommon.js"></script>
|
|
|
|
<body>
|
|
<script>
|
|
test_composition({
|
|
property: 'right',
|
|
underlying: '50px',
|
|
addFrom: '100px',
|
|
addTo: '200px',
|
|
}, [
|
|
{at: -0.3, expect: '120px'},
|
|
{at: 0, expect: '150px'},
|
|
{at: 0.5, expect: '200px'},
|
|
{at: 1, expect: '250px'},
|
|
{at: 1.5, expect: '300px'},
|
|
]);
|
|
|
|
test_composition({
|
|
property: 'right',
|
|
underlying: '100px',
|
|
addFrom: '10px',
|
|
addTo: '2px',
|
|
}, [
|
|
{at: -0.5, expect: '114px'},
|
|
{at: 0, expect: '110px'},
|
|
{at: 0.5, expect: '106px'},
|
|
{at: 1, expect: '102px'},
|
|
{at: 1.5, expect: '98px'},
|
|
]);
|
|
|
|
test_composition({
|
|
property: 'right',
|
|
underlying: '10%',
|
|
addFrom: '100px',
|
|
addTo: '20%',
|
|
}, [
|
|
{at: -0.3, expect: 'calc(130px + 4%)'},
|
|
{at: 0, expect: 'calc(100px + 10%)'},
|
|
{at: 0.5, expect: 'calc(50px + 20%)'},
|
|
{at: 1, expect: '30%'},
|
|
{at: 1.5, expect: 'calc(-50px + 40%)'},
|
|
]);
|
|
|
|
test_composition({
|
|
property: 'right',
|
|
underlying: '50px',
|
|
addFrom: '100px',
|
|
replaceTo: '200px',
|
|
}, [
|
|
{at: -0.3, expect: '135px'},
|
|
{at: 0, expect: '150px'},
|
|
{at: 0.5, expect: '175px'},
|
|
{at: 1, expect: '200px'},
|
|
{at: 1.5, expect: '225px'},
|
|
]);
|
|
|
|
test_composition({
|
|
property: 'right',
|
|
underlying: '100px',
|
|
addFrom: '100px',
|
|
addTo: 'auto',
|
|
}, [
|
|
{at: -0.3, expect: '200px'},
|
|
{at: 0, expect: '200px'},
|
|
{at: 0.5, expect: 'auto'},
|
|
{at: 1, expect: 'auto'},
|
|
{at: 1.5, expect: 'auto'},
|
|
]);
|
|
</script>
|
|
</body>
|