Update web-platform-tests to revision e426a6933a05bf144eba06a1d4c47ba876a4e2d1

This commit is contained in:
WPT Sync Bot 2019-05-22 10:24:35 +00:00
parent 415b26e4f1
commit 5e5eccabf8
495 changed files with 14920 additions and 784 deletions

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<meta charset=utf-8>
<title>CSS Font Loading reference: modification of descriptors</title>
<style>
@font-face { font-family: test; src: url(resources/GenR102.woff2); }
@font-face { font-family: test; font-style:italic; src: url(resources/GenI102.woff2); }
body { font-family: sans-serif; }
.test { font-family: test, sans-serif; }
</style>
<body>
<div>
All lines below should use the same serif font, with the word "weight" in italics:
<p class=test>Using original family name of a FontFace</p>
<p class=test>Using updated family name of a FontFace</p>
<p class=test>Using updated <i>weight</i> descriptors</p>
<p class=test>Using updated unicode-range descriptors</p>
</div>
</body>