Skip to content

Commit

Permalink
[css-fonts] Add parsing tests for font-palette (#30845)
Browse files Browse the repository at this point in the history
  • Loading branch information
litherum committed Sep 17, 2021
1 parent 9ca8693 commit f798da1
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 0 deletions.
22 changes: 22 additions & 0 deletions css/css-fonts/parsing/font-palette-computed.html
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Fonts Module Level 4: getComputedStyle().fontPalette</title>
<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-palette-prop">
<meta name="assert" content="font-palette computed value is as specified.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value('font-palette', 'none');
test_computed_value('font-palette', 'normal');
test_computed_value('font-palette', 'light');
test_computed_value('font-palette', 'dark');
test_computed_value('font-palette', 'pitchfork');
</script>
</body>
</html>
18 changes: 18 additions & 0 deletions css/css-fonts/parsing/font-palette-invalid.html
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Fonts Module Level 4: parsing font-palette with invalid values</title>
<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-palette-prop">
<meta name="assert" content="font-palette supports only the grammar 'none | normal | light | dark | <palette-identifier>'.">
<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-palette', 'normal none');
test_invalid_value('font-palette', 'none, light');
</script>
</body>
</html>
21 changes: 21 additions & 0 deletions css/css-fonts/parsing/font-palette-valid.html
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Fonts Module Level 4: parsing font-palette with valid values</title>
<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-palette-prop">
<meta name="assert" content="font-palette supports the full grammar 'none | normal | light | dark | <palette-identifier>'.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_valid_value('font-palette', 'none');
test_valid_value('font-palette', 'normal');
test_valid_value('font-palette', 'light');
test_valid_value('font-palette', 'dark');
test_valid_value('font-palette', 'pitchfork');
</script>
</body>
</html>

0 comments on commit f798da1

Please sign in to comment.