You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WebIDL doesn't have a concept of "overloading", where a method is declared in an interface and has new steps in a subclass that inherits from it.
The proper way to do this in WebIDL is to redefine that method in the sub-interface, and define new steps for it.
This is true for PerformanceNavigationTiming that inherits from PerformanceResourceTiming, but also for all the other types of entries that inherit from PerformanceEntry.
The text was updated successfully, but these errors were encountered:
WebIDL doesn't have a concept of "overloading", where a method is declared in an interface and has new steps in a subclass that inherits from it.
The proper way to do this in WebIDL is to redefine that method in the sub-interface, and define new steps for it.
This is true for
PerformanceNavigationTiming
that inherits fromPerformanceResourceTiming
, but also for all the other types of entries that inherit fromPerformanceEntry
.The text was updated successfully, but these errors were encountered: