Less than 1 minute
setTimeout
and setInterval
Additional arguments fix for IE9-:
// Before:
setTimeout(log.bind(null, 42), 1000);
// After:
setTimeout(log, 1000, 42);
Less than 1 minute
Less than 1 minute
Iterable DOM collections
Some DOM collections should have iterable interface or should be inherited from Array
. That means they should have forEach
, keys
, values
, entries
and @@iterator
methods for iteration. So add them.
About 1 min
DOMException
Modules
Less than 1 minute
Less than 1 minute
Less than 1 minute
About 1 min
About 2 min