fune/testing/web-platform/tests/css/css-properties-values-api/animation/custom-property-transition-image.html
Joey Arhar e69b8a9fc6 Bug 1846029 [wpt PR 41228] - CSSTransitionDiscrete: Rename transition-animation-type to transition-behavior, a=testonly
Automatic update from web-platform-tests
CSSTransitionDiscrete: Rename transition-animation-type to transition-behavior

This patch also renames the "discrete" value to "allow-discrete"
This was resolved in the csswg:
https://github.com/w3c/csswg-drafts/issues/8857#issuecomment-1646035541

Bug: 1453112
Change-Id: I9b9aad124376d5e7bf532d891b7a0e25b651ce2d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4718633
Reviewed-by: David Baron <dbaron@chromium.org>
Commit-Queue: Joey Arhar <jarhar@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1176694}

--

wpt-commits: d4c199f7f994faa4b63c61afea89c936e770509e
wpt-pr: 41228
2023-08-10 14:58:33 +00:00

17 lines
561 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://drafts.css-houdini.org/css-properties-values-api-1">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/utils.js"></script>
<div id="target"></div>
<script>
transition_test({
syntax: "<image>",
from: 'url("https://example.com/from")',
to: 'url("https://example.com/to")',
expected: 'url("https://example.com/to")',
behavior: 'allow-discrete',
}, 'A custom property of type <image> can yield a CSS Transition');
</script>