зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1163865 - Remove [Throws] from FontFaceSet.delete. r=smaug
This commit is contained in:
Родитель
3947001236
Коммит
bf9d92cf41
|
@ -36,7 +36,7 @@ interface FontFaceSet : EventTarget {
|
|||
readonly attribute unsigned long size;
|
||||
[Throws] void add(FontFace font);
|
||||
boolean has(FontFace font);
|
||||
[Throws] boolean delete(FontFace font);
|
||||
boolean delete(FontFace font);
|
||||
void clear();
|
||||
[NewObject] FontFaceSetIterator entries();
|
||||
// Iterator keys();
|
||||
|
|
|
@ -275,7 +275,7 @@ FontFaceSet::Clear()
|
|||
}
|
||||
|
||||
bool
|
||||
FontFaceSet::Delete(FontFace& aFontFace, ErrorResult& aRv)
|
||||
FontFaceSet::Delete(FontFace& aFontFace)
|
||||
{
|
||||
mPresContext->FlushUserFontSet();
|
||||
|
||||
|
|
|
@ -175,7 +175,7 @@ public:
|
|||
|
||||
FontFaceSet* Add(FontFace& aFontFace, mozilla::ErrorResult& aRv);
|
||||
void Clear();
|
||||
bool Delete(FontFace& aFontFace, mozilla::ErrorResult& aRv);
|
||||
bool Delete(FontFace& aFontFace);
|
||||
bool Has(FontFace& aFontFace);
|
||||
uint32_t Size();
|
||||
mozilla::dom::FontFaceSetIterator* Entries();
|
||||
|
|
Загрузка…
Ссылка в новой задаче