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

Unified Diff: LayoutTests/fast/css/fontfaceset-multiple-families.html

Issue 816923002: Switch FontFaceSet#ready from a method to an attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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: LayoutTests/fast/css/fontfaceset-multiple-families.html
diff --git a/LayoutTests/fast/css/fontfaceset-multiple-families.html b/LayoutTests/fast/css/fontfaceset-multiple-families.html
index 3f2946afcf86a6b552af1e80f8616dd1a78780f6..bd4358fef230fa8affea547e665268be75c5e90a 100644
--- a/LayoutTests/fast/css/fontfaceset-multiple-families.html
+++ b/LayoutTests/fast/css/fontfaceset-multiple-families.html
@@ -32,7 +32,7 @@ function runTests() {
document.fonts.addEventListener('loading', onLoading);
document.fonts.addEventListener('loadingdone', onLoadingDone);
document.fonts.addEventListener('loadingerror', onLoadingError);
- document.fonts.ready().then(finish);
+ document.fonts.ready.then(finish);
document.fonts.load('10px TestFont1, TestFont2, TestFont3, TestFont4', 'abc').catch(function() {});
}

Powered by Google App Engine
This is Rietveld 408576698