fune/testing/web-platform/tests/css/css-properties-values-api/animation/custom-property-animation-url.html
Antoine Quint 33dbbdbc00 Bug 1806187 [wpt PR 37565] - WebKit export of https://bugs.webkit.org/show_bug.cgi?id=249497, a=testonly
Automatic update from web-platform-tests
WebKit export of https://bugs.webkit.org/show_bug.cgi?id=249497 (#37565)

--

wpt-commits: 97bc513bb10a4240530fed39918869b96a5b2123
wpt-pr: 37565
2022-12-21 19:34:37 +00:00

13 lines
739 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>
discrete_animation_test("<url>", 'url("https://example.com/from")', 'url("https://example.com/to")');
discrete_animation_test("<url>+", 'url("https://example.com/from1") url("https://example.com/from2")', 'url("https://example.com/to1") url("https://example.com/to2")');
discrete_animation_test("<url>#", 'url("https://example.com/from1"), url("https://example.com/from2")', 'url("https://example.com/to1"), url("https://example.com/to2")');
</script>