mirror of
https://github.com/servo/servo.git
synced 2025-06-28 02:53:48 +01:00
22 lines
853 B
HTML
22 lines
853 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Fonts Module: parsing font-synthesis with invalid values</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-synthesis">
|
|
<meta name="assert" content="font-synthesis supports only the grammar 'none | [ weight || style || small-caps ]'.">
|
|
<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('font-synthesis', 'auto');
|
|
test_invalid_value('font-synthesis', 'none weight');
|
|
test_invalid_value('font-synthesis', 'none style');
|
|
test_invalid_value('font-synthesis', 'style none');
|
|
test_invalid_value('font-synthesis', 'none small-caps');
|
|
test_invalid_value('font-synthesis', 'small-caps none');
|
|
</script>
|
|
</body>
|
|
</html>
|