tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

font-display-feature-policy-02.tentative-ref.html (641B)


      1 <!DOCTYPE html>
      2 <title>Test for font-display-late-swap feature policy behavior when set to report-only</title>
      3 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      4 <style>
      5 .ahem {
      6  font-family: 'Ahem';
      7 }
      8 .arial {
      9  font-family: 'Arial';
     10 }
     11 </style>
     12 <p>None of the font-display values should be changed</p>
     13 <table id="container">
     14 <tr>
     15  <th>not-set</th>
     16  <th>auto</th>
     17  <th>block</th>
     18  <th>swap</th>
     19  <th>fallback</th>
     20  <th>optional</th>
     21 </tr>
     22 <tr>
     23  <td class="ahem">a</td>
     24  <td class="ahem">a</td>
     25  <td class="ahem">a</td>
     26  <td class="ahem">a</td>
     27  <td class="ahem">a</td>
     28  <td class="arial">a</td>
     29 </tr>
     30 </table>