mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
8 lines
181 B
Text
8 lines
181 B
Text
// https://w3c.github.io/requestidlecallback/#dom-idledeadline
|
|
[Exposed=Window]
|
|
interface IdleDeadline {
|
|
|
|
double timeRemaining();
|
|
readonly attribute boolean didTimeout;
|
|
|
|
};
|