mirror of
https://github.com/servo/servo.git
synced 2025-07-11 09:23:40 +01:00
29 lines
623 B
HTML
29 lines
623 B
HTML
<!DOCTYPE html>
|
|
<title>Test for font-display-late-swap feature policy behavior when set to reporting</title>
|
|
<style>
|
|
.ahem {
|
|
font-family: 'Ahem';
|
|
}
|
|
.arial {
|
|
font-family: 'Arial';
|
|
}
|
|
</style>
|
|
<p>Tests if font-display is set to optional for each option except for when it is set to fallback</p>
|
|
<table id="container">
|
|
<tr>
|
|
<th>not-set</th>
|
|
<th>auto</th>
|
|
<th>block</th>
|
|
<th>swap</th>
|
|
<th>fallback</th>
|
|
<th>optional</th>
|
|
</tr>
|
|
<tr>
|
|
<td class="arial">a</td>
|
|
<td class="arial">a</td>
|
|
<td class="arial">a</td>
|
|
<td class="arial">a</td>
|
|
<td class="ahem">a</td>
|
|
<td class="arial">a</td>
|
|
</tr>
|
|
</table>
|