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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/webfont/font-display-expected.html

Issue 2895123002: Convert CSS font-display test to wpt (Closed)
Patch Set: rebase, update network service expectation 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/webfont/font-display.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/webfont/font-display-expected.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/webfont/font-display-expected.html b/third_party/WebKit/LayoutTests/http/tests/webfont/font-display-expected.html
deleted file mode 100644
index b61799fa8ff83db05137b2c6192e1efeca25a4c0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/webfont/font-display-expected.html
+++ /dev/null
@@ -1,86 +0,0 @@
-<!DOCTYPE html>
-<title>Test for font-display @font-face descriptor</title>
-<script src="/js-test-resources/ahem.js"></script>
-<style>
-.ahem {
- font-family: Ahem;
-}
-.arial {
- font-family: Arial;
-}
-</style>
-<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>
-<table>
-<tr>
- <th>T[sec]</th>
- <th>delay[sec]</th>
- <th>auto</th>
- <th>block</th>
- <th>swap</th>
- <th>fallback</th>
- <th>optional</th>
-</tr>
-<tr>
- <td>0</td>
- <td>1</td>
- <td></td>
- <td></td>
- <td class="arial">a</td>
- <td></td>
- <td></td>
-</tr>
-<tr>
- <td>1</td>
- <td>0</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
-</tr>
-<tr>
- <td>1</td>
- <td>0.5</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="arial">a</td>
-</tr>
-<tr>
- <td>1</td>
- <td>3</td>
- <td></td>
- <td></td>
- <td class="arial">a</td>
- <td class="arial">a</td>
- <td class="arial">a</td>
-</tr>
-<tr>
- <td>5</td>
- <td>2</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="arial">a</td>
-</tr>
-<tr>
- <td>5</td>
- <td>4</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="ahem">a</td>
- <td class="arial">a</td>
- <td class="arial">a</td>
-</tr>
-<tr>
- <td>5</td>
- <td>8</td>
- <td class="arial">a</td>
- <td class="arial">a</td>
- <td class="arial">a</td>
- <td class="arial">a</td>
- <td class="arial">a</td>
-</tr>
-</table>
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/webfont/font-display.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698