diff options
Diffstat (limited to 'dom/webidl/WindowOrWorkerGlobalScope.webidl')
-rw-r--r-- | dom/webidl/WindowOrWorkerGlobalScope.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/webidl/WindowOrWorkerGlobalScope.webidl b/dom/webidl/WindowOrWorkerGlobalScope.webidl index 9e639db5f4..d378ba49ec 100644 --- a/dom/webidl/WindowOrWorkerGlobalScope.webidl +++ b/dom/webidl/WindowOrWorkerGlobalScope.webidl @@ -31,9 +31,9 @@ interface WindowOrWorkerGlobalScope { long setTimeout(DOMString handler, optional long timeout = 0, any... unused); void clearTimeout(optional long handle = 0); [Throws] - long setInterval(Function handler, optional long timeout, any... arguments); + long setInterval(Function handler, optional long timeout = 0, any... arguments); [Throws] - long setInterval(DOMString handler, optional long timeout, any... unused); + long setInterval(DOMString handler, optional long timeout = 0, any... unused); void clearInterval(optional long handle = 0); // microtask queuing |