blob: d84a9aa12396ad121a61c3168c1392f79474c27e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tests currentColor in @font-palette-values is inherited as currentColor</title>
<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-palette-prop">
<link rel="help" href="https://drafts.csswg.org/css-fonts-4/#font-palette-values">
<link rel="author" title="Mike Bremford" href="mailto:mike@bfo.com">
<link rel="match" href="font-palette-35-ref.html">
<style>
@font-face {
font-family: "COLR-test-font";
src: url("resources/COLR-palettes-test-font.ttf") format("truetype");
}
@font-palette-values --MyPalette {
font-family: "COLR-test-font";
override-colors: 7 currentColor;
}
div {
color: red;
font: 48px 'COLR-test-font';
font-palette: --MyPalette;
}
span {
color: #00FF00;
}
</style>
</head>
<body>
<div><span>A</span></div>
</body>
</html>