blob: df5d44ae38f4f8f3be4d6e2ec5863ca408d4483f [file] [log] [blame]
<!doctype html>
<meta charset="utf-8">
<title>'animation-name' property</title>
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-get">
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-set">
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#property-stle-value-normalization">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../resources/testhelper.js"></script>
<script src="resources/testsuite.js"></script>
<body>
<div id="log"></div>
<script>
'use strict';
runListValuedPropertyTests('animation-name', [
{ syntax: 'none' },
// FIXME: This should be <custom-ident>, but the test harness doesn't
// currently support it.
{ syntax: 'custom-ident' },
]);
runUnsupportedPropertyTests('animation-name', [
'"foo"'
]);
</script>