alphabetized frozen supported entry types on the global, avoid moving Heap into Option

This commit is contained in:
Patrick Shaughnessy 2020-02-05 18:32:42 -05:00
parent 4f36472b6f
commit e0b768c6cc
9 changed files with 66 additions and 49 deletions

View file

@ -21,5 +21,6 @@ interface PerformanceObserver {
void observe(optional PerformanceObserverInit options = {});
void disconnect();
PerformanceEntryList takeRecords();
// [SameObject] static readonly attribute FrozenArray<DOMString> supportedEntryTypes;
// codegen doesn't like SameObject+static and doesn't know FrozenArray
/*[SameObject]*/ static readonly attribute /*FrozenArray<DOMString>*/ any supportedEntryTypes;
};