gecko-dev/testing/web-platform/tests/css/css-ui/animation/outline-offset-composition.html
haozhe 87c7e4bd7b Bug 1604907 [wpt PR 20851] - Port css-ui related composition tests to external, a=testonly
Automatic update from web-platform-tests
Port css-ui related composition tests to external

Both Chrome and Firefox pass all tests

Bug: 1034538
Change-Id: I9f92d6b91fafacfc12e81a7bc5941a6e8e0e4868
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1974755
Commit-Queue: Hao Sheng <haozhes@chromium.org>
Reviewed-by: Xida Chen <xidachen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727641}

--

wpt-commits: 070df683f5a7999245622eec274974903c3560c2
wpt-pr: 20851
2020-01-03 11:36:10 +00:00

65 lines
1.5 KiB
HTML

<!DOCTYPE html>
<meta charset="UTF-8">
<title>outline-offset composition</title>
<link rel="help" href="https://drafts.csswg.org/css-ui-3/#outline-offset">
<meta name="assert" content="outline-offset supports animation by computed value">
<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: 'outline-offset',
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: 'outline-offset',
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: 'outline-offset',
underlying: '10em',
addFrom: '100px',
addTo: '20em',
}, [
{at: -0.3, expect: 'calc(130px + 4em)'},
{at: 0, expect: 'calc(100px + 10em)'},
{at: 0.5, expect: 'calc(50px + 20em)'},
{at: 1, expect: '30em'},
{at: 1.5, expect: 'calc(-50px + 40em)'},
]);
test_composition({
property: 'outline-offset',
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'},
]);
</script>
</body>