summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-animations/parsing/keyframes-name-invalid.html
blob: f14dff3e2c0db5c1e7ba7756ea2f81e1bcfc21a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>CSS Animations: parsing @keyframes name with invalid values</title>
    <link rel="author" title="yisibl(一丝)" href="https://github.com/yisibl"/>
    <link rel="help" href="https://drafts.csswg.org/css-animations/#typedef-keyframes-name">
    <meta name="assert" content="@keyframes name supports the full grammar '<custom-ident> | <string>'.">
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
    <div>
        <main id="main"></main>
    </div>
    <script>
        test_keyframes_name_invalid('none');

        // The CSS-wide keywords are not valid <custom-ident>s. The default keyword is reserved and is also not a valid <custom-ident>.
        // Spec: https://drafts.csswg.org/css-values-4/#identifier-value
        test_keyframes_name_invalid('default');
        test_keyframes_name_invalid('initial');
        test_keyframes_name_invalid('inherit');
        test_keyframes_name_invalid('unset');
        test_keyframes_name_invalid('revert');
        test_keyframes_name_invalid('revert-layer');

        test_keyframes_name_invalid('12');
        test_keyframes_name_invalid('-12');
        test_keyframes_name_invalid('12foo');
        test_keyframes_name_invalid('foo.bar');
        test_keyframes_name_invalid('one two');
        test_keyframes_name_invalid('one, two');

        test_keyframes_name_invalid('one, initial');
        test_keyframes_name_invalid('one, inherit');
        test_keyframes_name_invalid('one, unset');
        test_keyframes_name_invalid('default, two');
        test_keyframes_name_invalid('revert, three');
        test_keyframes_name_invalid('revert-layer, four');
        // TODO: https://bugs.chromium.org/p/chromium/issues/detail?id=1342609
        // test_keyframes_name_invalid('--foo');
    </script>
</body>
</html>