mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-04 23:29:52 +00:00
They are only valid in a Window context, and the spec only exposes them in Window contexts. Fixes workers crashing on: - https://web.whatsapp.com/ - https://pro.kraken.com/app/trade/btc-usd
8 lines
276 B
Text
8 lines
276 B
Text
// https://w3c.github.io/navigation-timing/#extensions-to-the-performance-interface
|
|
[Exposed=Window]
|
|
partial interface Performance {
|
|
[SameObject]
|
|
readonly attribute PerformanceTiming timing;
|
|
[SameObject]
|
|
readonly attribute PerformanceNavigation navigation;
|
|
};
|