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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/webfont/font-face-revalidation.html

Issue 2550663002: Allow creating font data while FontResource is revalidating (Closed)
Patch Set: rebase Created 3 years, 10 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
Index: third_party/WebKit/LayoutTests/http/tests/webfont/font-face-revalidation.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/webfont/font-face-revalidation.html b/third_party/WebKit/LayoutTests/http/tests/webfont/font-face-revalidation.html
new file mode 100644
index 0000000000000000000000000000000000000000..d4ff97c6e645d2926382141dfb6baae8e4fd44d9
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/webfont/font-face-revalidation.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<style></style>
+<script>
+if (window.testRunner)
+ testRunner.waitUntilDone();
+
+function addFontFaceRule() {
+ let font = 'cachable-slow-ahem-loading.cgi?delay=50';
+ document.styleSheets[0].insertRule(
+ '@font-face { font-family: ahem; src: url(' + font + '); }',
+ document.styleSheets[0].cssRules.length);
+}
+
+addFontFaceRule();
+
+document.fonts.ready.then(() => {
+ addFontFaceRule();
+ return document.fonts.ready;
+}).then(() => {
+ testRunner.notifyDone();
+});
+</script>
+<p>
+You should see a black square below.
+</p>
+<div style="font-family: ahem">test</span>

Powered by Google App Engine
This is Rietveld 408576698