Chromium Code Reviews

Unified Diff: LayoutTests/fast/css/fontfaceset-add-remove-while-loading.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.
Jump to:
View side-by-side diff with in-line comments
Index: LayoutTests/fast/css/fontfaceset-add-remove-while-loading.html
diff --git a/LayoutTests/fast/css/fontfaceset-add-remove-while-loading.html b/LayoutTests/fast/css/fontfaceset-add-remove-while-loading.html
index 4c9f2cfc4908df077626e3798a25fe19faa8d3df..b90b03da39af865e821f8e0c6ef0461234518d23 100644
--- a/LayoutTests/fast/css/fontfaceset-add-remove-while-loading.html
+++ b/LayoutTests/fast/css/fontfaceset-add-remove-while-loading.html
@@ -16,7 +16,7 @@ function testStep1() {
document.fonts.add(face1);
shouldBeEqualToString('document.fonts.status', 'loading');
- document.fonts.ready().then(testStep2);
+ document.fonts.ready.then(testStep2);
}
function testStep2() {

Powered by Google App Engine