Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/css-font-display/font-display-expected.html

Issue 2895123002: Convert CSS font-display test to wpt (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698