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
{{ message }}
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Checked on x86_64, v0.10.30 and v0.11.14-pre, linux.
Firslty,
setInterval
determines delay between executions. ForsetInterval(sleep(20), 100)
:DOM-version
setInterval
determines delay between runs:Use the following snippet to check it out:
Node v0.11.14-pre 'Delta': 102, 124, 119, 120, 120, ...
Node v0.10.30 'Delta': 101, 102, 100, 100, 100, ...
DOM 'Delta': 100, 80, 81, 80, 80, 81, ...
Secondly, overlay of calls:
Node v0.11.14-pre 'Delta': 101, 302, 300, 300, 300, ...
Node v0.10.30 'Delta': 101, 101, 100, 100, ...
DOM 'Delta': 101, 0, 0, 1, 0, 1, 0, 0, ...
The text was updated successfully, but these errors were encountered: