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

Unified Diff: third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.idl

Issue 2579513005: Expose FontFaceSetLoadEvent and add a constructor for it (Closed)
Patch Set: Update rebase Created 3 years, 11 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/webexposed/global-interface-listing-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.idl
diff --git a/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.idl b/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.idl
index 201f53c25f1361ec62b60cf17ddbafc0f3f41f40..047b12d4141949da1438096e72ea25c571b6e18e 100644
--- a/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.idl
+++ b/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.idl
@@ -30,10 +30,10 @@
// https://dev.w3.org/csswg/css-font-loading/#fontfacesetloadevent
-// TODO(foolip): This interface should have a constructor and
-// [Exposed=Window,Worker], and thus not [NoInterfaceObject].
[
- NoInterfaceObject,
+ Constructor(DOMString type, optional FontFaceSetLoadEventInit eventInitDict),
+ // TODO(lunalu): Exposed=(Window,Worker)
+ Exposed=Window
] interface FontFaceSetLoadEvent : Event {
- readonly attribute sequence<FontFace> fontfaces;
+ [SameObject] readonly attribute FrozenArray<FontFace> fontfaces;
};
« no previous file with comments | « third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698