mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Update web-platform-tests to revision b'b728032f59a396243864b0f8584e7211e3632005'
This commit is contained in:
parent
ace9b32b1c
commit
df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions
|
@ -0,0 +1,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>
|
Loading…
Add table
Add a link
Reference in a new issue