Status: FAIL | Duration: 301ms | Subtests: 35/42 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| CSS Transitions with transition-behavior:allow-discrete: property <float> from [left] to [right] at (-0.3) should be [left] | PASS | |
| CSS Transitions with transition-behavior:allow-discrete: property <float> from [left] to [right] at (0) should be [left] | PASS | |
| CSS Transitions with transition-behavior:allow-discrete: property <float> from [left] to [right] at (0.3) should be [left] | PASS | |
| CSS Transitions with transition-behavior:allow-discrete: property <float> from [left] to [right] at (0.5) should be [right] | PASS | |
| CSS Transitions with transition-behavior:allow-discrete: property <float> from [left] to [right] at (0.6) should be [right] | PASS | |
| CSS Transitions with transition-behavior:allow-discrete: property <float> from [left] to [right] at (1) should be [right] | PASS | |
| CSS Transitions with transition-behavior:allow-discrete: property <float> from [left] to [right] at (1.5) should be [right] | PASS | |
| CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <float> from [left] to [right] at (-0.3) should be [left] | PASS | |
| CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <float> from [left] to [right] at (0) should be [left] | PASS | |
| CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <float> from [left] to [right] at (0.3) should be [left] | PASS | |
| CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <float> from [left] to [right] at (0.5) should be [right] | PASS | |
| CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <float> from [left] to [right] at (0.6) should be [right] | PASS | |
| CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <float> from [left] to [right] at (1) should be [right] | PASS | |
| CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <float> from [left] to [right] at (1.5) should be [right] | PASS | |
| CSS Transitions: property <float> from [left] to [right] at (-0.3) should be [right] | PASS | |
| CSS Transitions: property <float> from [left] to [right] at (0) should be [right] | PASS | |
| CSS Transitions: property <float> from [left] to [right] at (0.3) should be [right] | PASS | |
| CSS Transitions: property <float> from [left] to [right] at (0.5) should be [right] | PASS | |
| CSS Transitions: property <float> from [left] to [right] at (0.6) should be [right] | PASS | |
| CSS Transitions: property <float> from [left] to [right] at (1) should be [right] | PASS | |
| CSS Transitions: property <float> from [left] to [right] at (1.5) should be [right] | PASS | |
| CSS Transitions with transition: all: property <float> from [left] to [right] at (-0.3) should be [right] | PASS | |
| CSS Transitions with transition: all: property <float> from [left] to [right] at (0) should be [right] | PASS | |
| CSS Transitions with transition: all: property <float> from [left] to [right] at (0.3) should be [right] | PASS | |
| CSS Transitions with transition: all: property <float> from [left] to [right] at (0.5) should be [right] | PASS | |
| CSS Transitions with transition: all: property <float> from [left] to [right] at (0.6) should be [right] | PASS | |
| CSS Transitions with transition: all: property <float> from [left] to [right] at (1) should be [right] | PASS | |
| CSS Transitions with transition: all: property <float> from [left] to [right] at (1.5) should be [right] | PASS | |
| CSS Animations: property <float> from [left] to [right] at (-0.3) should be [left] | PASS | |
| CSS Animations: property <float> from [left] to [right] at (0) should be [left] | PASS | |
| CSS Animations: property <float> from [left] to [right] at (0.3) should be [left] | PASS | |
| CSS Animations: property <float> from [left] to [right] at (0.5) should be [right] | PASS | |
| CSS Animations: property <float> from [left] to [right] at (0.6) should be [right] | PASS | |
| CSS Animations: property <float> from [left] to [right] at (1) should be [right] | PASS | |
| CSS Animations: property <float> from [left] to [right] at (1.5) should be [right] | PASS | |
| Web Animations: property <float> from [left] to [right] at (-0.3) should be [left] | FAIL | assert_true: Web Animations should be supported expected true got false |
| Web Animations: property <float> from [left] to [right] at (0) should be [left] | FAIL | assert_true: Web Animations should be supported expected true got false |
| Web Animations: property <float> from [left] to [right] at (0.3) should be [left] | FAIL | assert_true: Web Animations should be supported expected true got false |
| Web Animations: property <float> from [left] to [right] at (0.5) should be [right] | FAIL | assert_true: Web Animations should be supported expected true got false |
| Web Animations: property <float> from [left] to [right] at (0.6) should be [right] | FAIL | assert_true: Web Animations should be supported expected true got false |
| Web Animations: property <float> from [left] to [right] at (1) should be [right] | FAIL | assert_true: Web Animations should be supported expected true got false |
| Web Animations: property <float> from [left] to [right] at (1.5) should be [right] | FAIL | assert_true: Web Animations should be supported expected true got false |
/css/css-logical/animations/float-interpolation.html
<!DOCTYPE html> <meta charset="UTF-8"> <title>float interpolation</title> <link rel="help" href="https://drafts.csswg.org/css-logical/#float-clear"> <meta name="assert" content="float supports animation"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/interpolation-testcommon.js"></script> <style> .expected { color: green; } </style> <body> <template id="target-template">float</template> <script> test_no_interpolation({ property: 'float', from: 'left', to: 'right', }); </script> </body>