Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 168 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-gaps/animation/row-rule-outset-interpolation.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>row-rule-outset interpolation</title>
<link rel="author" title="Javier Contreras" href="mailto:javiercon@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>
<style>
.parent {
row-rule-style: solid;
row-rule-outset: 20px;
}
.target {
display: flex;
row-gap: 10px;
row-rule: 10px solid black;
column-rule: 10px solid black;
row-rule-break: intersection;
row-rule-outset: 5px;
}
</style>
</head>
<body>
<script>
test_interpolation({
property: 'row-rule-outset',
from: neutralKeyframe,
to: '15px',
}, [
{ at: -0.3, expect: '2px' },
{ at: 0, expect: '5px' },
{ at: 0.3, expect: '8px' },
{ at: 0.6, expect: '11px' },
{ at: 1, expect: '15px' },
{ at: 1.5, expect: '20px' },
]);
test_interpolation({
property: 'row-rule-outset',
from: 'initial', // initial is 50%.
to: '40%',
}, [
{ at: -0.3, expect: '53%' },
{ at: 0, expect: '50%' },
{ at: 0.3, expect: '47%' },
{ at: 0.6, expect: '44%' },
{ at: 1, expect: '40%' },
{ at: 1.5, expect: '35%' },
]);
test_interpolation({
property: 'row-rule-outset',
from: 'inherit',
to: '10px',
}, [
{ at: -0.3, expect: '23px' },
{ at: 0, expect: '20px' },
{ at: 0.3, expect: '17px' },
{ at: 0.6, expect: '14px' },
{ at: 1, expect: '10px' },
{ at: 1.5, expect: '5px' },
]);
test_interpolation({
property: 'row-rule-outset',
from: 'unset',
to: '40%',
}, [
{ at: -0.3, expect: '53%' },
{ at: 0, expect: '50%' },
{ at: 0.3, expect: '47%' },
{ at: 0.6, expect: '44%' },
{ at: 1, expect: '40%' },
{ at: 1.5, expect: '35%' },
]);
test_interpolation({
property: 'row-rule-outset',
from: '-5px',
to: '5px'
}, [
{ at: -0.3, expect: '-8px' }, // row-rule-outset can be negative
{ at: 0, expect: '-5px' },
{ at: 0.3, expect: '-2px' },
{ at: 0.6, expect: '1px' },
{ at: 1, expect: '5px' },
{ at: 1.5, expect: '10px' },
]);
test_interpolation({
property: 'row-rule-outset',
from: '100%',
to: '1px',
}, [
{ at: -0.3, expect: 'calc(130% - 0.3px)' },
{ at: 0, expect: '100%' },
{ at: 0.3, expect: 'calc(70% + 0.3px)' },
{ at: 0.6, expect: 'calc(40% + 0.6px)' },
{ at: 1, expect: 'calc(0% + 1px)' },
{ at: 1.5, expect: 'calc(-50% + 1.5px)' },
]);
test_interpolation({
property: 'row-rule-outset',
from: '10px',
to: '10%',
}, [
{ at: -0.3, expect: 'calc(-3% + 13px)' },
{ at: 0, expect: 'calc(0% + 10px)' },
{ at: 0.3, expect: 'calc(3% + 7px)' },
{ at: 0.6, expect: 'calc(6% + 4px)' },
{ at: 1, expect: '10%' },
{ at: 1.5, expect: 'calc(15% - 5px)' },
]);
</script>
</body>
</html>