Closed bzbarsky closed 6 years ago
The IDL says:
callback LockGrantedCallback = Promise<any> (Lock lock);
but https://wicg.github.io/web-locks/#algorithm-request-lock step 6.1.1 passes null as the argument, which is not a valid Lock value. Presumably this callback should take Lock?.
null
Lock
Lock?
Whoops, yep. Fixed. WPT change coming.
The IDL says:
but https://wicg.github.io/web-locks/#algorithm-request-lock step 6.1.1 passes
null
as the argument, which is not a validLock
value. Presumably this callback should takeLock?
.