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; |
}; |