wpt / svg / path / animations / path-length-interpolation.tentative.html

Status: FAIL | Duration: 116ms | Subtests: 0/32 | Open test on wpt.live | wpt.fyi

Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)

SubtestStatusMessage
CSS Transitions: property <path-length> from [0px] to [100px] at (-0.3) should be [0px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions: property <path-length> from [0px] to [100px] at (0) should be [0px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions: property <path-length> from [0px] to [100px] at (0.5) should be [50px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions: property <path-length> from [0px] to [100px] at (1) should be [100px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions: property <path-length> from [0px] to [100px] at (1.5) should be [150px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions with transition: all: property <path-length> from [0px] to [100px] at (-0.3) should be [0px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions with transition: all: property <path-length> from [0px] to [100px] at (0) should be [0px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions with transition: all: property <path-length> from [0px] to [100px] at (0.5) should be [50px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions with transition: all: property <path-length> from [0px] to [100px] at (1) should be [100px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions with transition: all: property <path-length> from [0px] to [100px] at (1.5) should be [150px]FAILassert_true: 'from' value should be supported expected true got false
CSS Animations: property <path-length> from [0px] to [100px] at (-0.3) should be [0px]FAILassert_true: 'from' value should be supported expected true got false
CSS Animations: property <path-length> from [0px] to [100px] at (0) should be [0px]FAILassert_true: 'from' value should be supported expected true got false
CSS Animations: property <path-length> from [0px] to [100px] at (0.5) should be [50px]FAILassert_true: 'from' value should be supported expected true got false
CSS Animations: property <path-length> from [0px] to [100px] at (1) should be [100px]FAILassert_true: 'from' value should be supported expected true got false
CSS Animations: property <path-length> from [0px] to [100px] at (1.5) should be [150px]FAILassert_true: 'from' value should be supported expected true got false
Web Animations: property <path-length> from [0px] to [100px] at (-0.3) should be [0px]FAILassert_true: Web Animations should be supported expected true got false
Web Animations: property <path-length> from [0px] to [100px] at (0) should be [0px]FAILassert_true: Web Animations should be supported expected true got false
Web Animations: property <path-length> from [0px] to [100px] at (0.5) should be [50px]FAILassert_true: Web Animations should be supported expected true got false
Web Animations: property <path-length> from [0px] to [100px] at (1) should be [100px]FAILassert_true: Web Animations should be supported expected true got false
Web Animations: property <path-length> from [0px] to [100px] at (1.5) should be [150px]FAILassert_true: Web Animations should be supported expected true got false
CSS Transitions: property <path-length> from [10px] to [2em] at (0) should be [10px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions: property <path-length> from [10px] to [2em] at (0.5) should be [21px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions: property <path-length> from [10px] to [2em] at (1) should be [32px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions with transition: all: property <path-length> from [10px] to [2em] at (0) should be [10px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions with transition: all: property <path-length> from [10px] to [2em] at (0.5) should be [21px]FAILassert_true: 'from' value should be supported expected true got false
CSS Transitions with transition: all: property <path-length> from [10px] to [2em] at (1) should be [32px]FAILassert_true: 'from' value should be supported expected true got false
CSS Animations: property <path-length> from [10px] to [2em] at (0) should be [10px]FAILassert_true: 'from' value should be supported expected true got false
CSS Animations: property <path-length> from [10px] to [2em] at (0.5) should be [21px]FAILassert_true: 'from' value should be supported expected true got false
CSS Animations: property <path-length> from [10px] to [2em] at (1) should be [32px]FAILassert_true: 'from' value should be supported expected true got false
Web Animations: property <path-length> from [10px] to [2em] at (0) should be [10px]FAILassert_true: Web Animations should be supported expected true got false
Web Animations: property <path-length> from [10px] to [2em] at (0.5) should be [21px]FAILassert_true: Web Animations should be supported expected true got false
Web Animations: property <path-length> from [10px] to [2em] at (1) should be [32px]FAILassert_true: Web Animations should be supported expected true got false

/svg/path/animations/path-length-interpolation.tentative.html

<!DOCTYPE html>
<title>path-length interpolation</title>
<link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/paths.html#PathLengthProperty"/>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>
<body>
<script>
// Clamps at the non-negative boundary when interpolating from 0.
test_interpolation({
  property: 'path-length',
  from: '0px',
  to: '100px',
}, [
  {at: -0.3, expect: '0px'},
  {at: 0, expect: '0px'},
  {at: 0.5, expect: '50px'},
  {at: 1, expect: '100px'},
  {at: 1.5, expect: '150px'},
]);

// Interpolates between different units (2em = 32px at font-size 16px).
test_interpolation({
  property: 'path-length',
  from: '10px',
  to: '2em',
}, [
  {at: 0, expect: '10px'},
  {at: 0.5, expect: '21px'},
  {at: 1, expect: '32px'},
]);
</script>
</body>