mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
Just have all the timing functions return 0 for now. We can now run the Shynet JS on https://linus.dev/ although the XHR is rejected by our same-origin policy.
7 lines
151 B
Plaintext
7 lines
151 B
Plaintext
interface Performance : EventTarget {
|
|
double now();
|
|
readonly attribute double timeOrigin;
|
|
|
|
readonly attribute PerformanceTiming timing;
|
|
};
|