OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <title>Test for font-display @font-face descriptor</title> | 2 <title>Test for font-display @font-face descriptor</title> |
3 <script src="/js-test-resources/ahem.js"></script> | |
4 <style> | 3 <style> |
4 @font-face { | |
foolip
2017/05/29 15:35:20
This block ought not be needed, wpt assumes that A
Kunihiko Sakamoto
2017/05/30 04:11:10
Ah, the test passed without this rule. Removed.
| |
5 font-family: Ahem; | |
6 src: url(resources/slow-ahem-loading.py?ms=0); | |
7 } | |
8 | |
5 .ahem { | 9 .ahem { |
6 font-family: Ahem; | 10 font-family: Ahem; |
7 } | 11 } |
8 .arial { | 12 .arial { |
9 font-family: Arial; | 13 font-family: Arial; |
10 } | 14 } |
11 </style> | 15 </style> |
12 <p>Tests how text with a font that takes <i>delay</i> seconds to load look like after <i>T</i> seconds from load start.</p> | 16 <p>Tests how text with a font that takes <i>delay</i> seconds to load look like after <i>T</i> seconds from load start.</p> |
13 <table> | 17 <table> |
14 <tr> | 18 <tr> |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 <tr> | 81 <tr> |
78 <td>5</td> | 82 <td>5</td> |
79 <td>8</td> | 83 <td>8</td> |
80 <td class="arial">a</td> | 84 <td class="arial">a</td> |
81 <td class="arial">a</td> | 85 <td class="arial">a</td> |
82 <td class="arial">a</td> | 86 <td class="arial">a</td> |
83 <td class="arial">a</td> | 87 <td class="arial">a</td> |
84 <td class="arial">a</td> | 88 <td class="arial">a</td> |
85 </tr> | 89 </tr> |
86 </table> | 90 </table> |
OLD | NEW |