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

Unified Diff: core/css/FontFace.idl

Issue 155973006: Roll IDL to 1750 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 years, 10 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 | « core/css/CSSVariablesMapForEachCallback.idl ('k') | core/css/FontFaceSet.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/css/FontFace.idl
diff --git a/core/css/FontFace.idl b/core/css/FontFace.idl
index 874872ffc24a51ed750ac55b6aa1c9076916ea4a..fcfef2d143b39657681d44bc0c16953792d3a90a 100644
--- a/core/css/FontFace.idl
+++ b/core/css/FontFace.idl
@@ -38,20 +38,19 @@ enum FontFaceLoadStatus {
[
RuntimeEnabled=FontLoadEvents,
Constructor(DOMString family, DOMString source, Dictionary descriptors),
- ConstructorRaisesException
+ RaisesException=Constructor
] interface FontFace {
- [SetterRaisesException] attribute DOMString family;
- [SetterRaisesException] attribute DOMString style;
- [SetterRaisesException] attribute DOMString weight;
- [SetterRaisesException] attribute DOMString stretch;
- [SetterRaisesException] attribute DOMString unicodeRange;
- [SetterRaisesException] attribute DOMString variant;
- [SetterRaisesException] attribute DOMString featureSettings;
+ [RaisesException=Setter] attribute DOMString family;
+ [RaisesException=Setter] attribute DOMString style;
+ [RaisesException=Setter] attribute DOMString weight;
+ [RaisesException=Setter] attribute DOMString stretch;
+ [RaisesException=Setter] attribute DOMString unicodeRange;
+ [RaisesException=Setter] attribute DOMString variant;
+ [RaisesException=Setter] attribute DOMString featureSettings;
readonly attribute FontFaceLoadStatus status;
- // FIXME: Implement them
- // void load();
- // Promise ready();
+ void load();
+ [CallWith=ExecutionContext] Promise ready();
};
« no previous file with comments | « core/css/CSSVariablesMapForEachCallback.idl ('k') | core/css/FontFaceSet.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698