mirror of
https://github.com/servo/servo.git
synced 2025-06-29 11:33:39 +01:00
19 lines
731 B
HTML
19 lines
731 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Transitions: parsing transition-property with invalid values</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-transitions/#propdef-transition-property">
|
|
<meta name="assert" content="transition-property supports only the grammar 'none | <single-transition-property> #'.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/parsing-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
test_invalid_value("transition-property", 'one two three');
|
|
test_invalid_value("transition-property", '1, 2, 3');
|
|
test_invalid_value("transition-property", 'none, one');
|
|
</script>
|
|
</body>
|
|
</html>
|