Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/FontFaceSet.idl |
| diff --git a/third_party/WebKit/Source/core/css/FontFaceSet.idl b/third_party/WebKit/Source/core/css/FontFaceSet.idl |
| index ce3eb1d34dd8038e33f308f9cb6bcb1a5980b889..a59c7e09fa0814185be6d93e7d8f8a056c3c393b 100644 |
| --- a/third_party/WebKit/Source/core/css/FontFaceSet.idl |
| +++ b/third_party/WebKit/Source/core/css/FontFaceSet.idl |
| @@ -37,7 +37,7 @@ enum FontFaceSetLoadStatus { "loading", "loaded" }; |
| [ |
| ActiveDOMObject, |
| SetWrapperReferenceFrom=document, |
| - NoInterfaceObject, |
| + Exposed=(Window,Worker), |
| ] interface FontFaceSet : EventTarget { |
| setlike<FontFace>; |
| readonly attribute unsigned long size; |
| @@ -60,4 +60,6 @@ enum FontFaceSetLoadStatus { "loading", "loaded" }; |
| // loading state, "loading" while one or more fonts loading, "loaded" otherwise |
| readonly attribute FontFaceSetLoadStatus status; |
| + |
| + [CallWith=ScriptState, RuntimeEnabled=FontAccess, APIExperimentEnabled=FontAccess] static readonly attribute Promise systemFonts; |
|
mlamouri (slow - plz ping)
2016/01/26 17:17:12
Is there some doc to link to with the proposal?
Daniel Nishi
2016/01/26 18:36:10
High level design doc: https://docs.google.com/doc
|
| }; |