summaryrefslogtreecommitdiffstats
path: root/layout/reftests/w3c-css/submitted/variables/support/external-variable-font-face.css
blob: 87f0609ba3d1422eb2af8ddbb73e13d9892ecccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@font-face {
  --a: MyTestFontName;
  font-family: var(--a);
  src: url(./Ahem.ttf);
}
@font-face {
  font-family: MyTestFontName2;
  src: url(./Ahem.ttf);
}
#a {
  font-family: MyTestFontName, serif;
}
#b {
  font-family: MyTestFontName2, serif;
}