summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-face/colrv1-02.html
blob: 14cee4feb50c8b223b7967c4ce4a1ef9569fa13e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<meta charset=utf-8>
<title>COLRv1 font test: using the tech() function</title>
<style>
@font-face {
  font-family: CAhem;
  src: url("../fonts/fira/FiraSansOT-RegularItalic.otf");  /* if tech() is not parsed */
  src: url("CAhem.ttf") tech(color-COLRv1),
       url("../fonts/fira/FiraSans-Regular.otf");
}
#test { font: 100px/1 CAhem, serif; margin: 10px; padding: 10px; }
</style>

<!-- This should render using CAhem if COLRv1 is enabled, and FiraSans if disabled.
     If the tech() function fails to parse at all, we'll get Fira Italic. -->
<div id="test">ABC</div>