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

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

Issue 1406153003: CSS Font Loading: drop readonly to use Setlike functionalities (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@font_face_set
Patch Set: insert <br> Created 5 years, 2 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/Source/core/css/FontFaceSet.cpp ('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/FontFaceSet.idl
diff --git a/third_party/WebKit/Source/core/css/FontFaceSet.idl b/third_party/WebKit/Source/core/css/FontFaceSet.idl
index 9e5fc9ccd048afb08ac246256b9d410eb16a9b05..ce3eb1d34dd8038e33f308f9cb6bcb1a5980b889 100644
--- a/third_party/WebKit/Source/core/css/FontFaceSet.idl
+++ b/third_party/WebKit/Source/core/css/FontFaceSet.idl
@@ -39,13 +39,8 @@ enum FontFaceSetLoadStatus { "loading", "loaded" };
SetWrapperReferenceFrom=document,
NoInterfaceObject,
] interface FontFaceSet : EventTarget {
- // TODO(toyoshim): Drop 'readonly' to use setlike's add, delete, and clear.
- readonly setlike<FontFace>;
+ setlike<FontFace>;
readonly attribute unsigned long size;
- // TODO(philipj): add() should return the FontFaceSet.
- [RaisesException] void add(FontFace fontFace);
- [RaisesException, ImplementedAs=remove] boolean delete(FontFace fontFace);
- void clear();
// events for when loading state changes
attribute EventHandler onloading;
« no previous file with comments | « third_party/WebKit/Source/core/css/FontFaceSet.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698