DevTools snippets do not run microtasks. |
||
Issue description
Chrome Version: 69
What steps will reproduce the problem?
(1) Open DevTools and switch to Snippets in the Source panel.
(2) Create a snippet with the following code:
async function f(x) {
var a = 1;
await (x + 1);
console.log(1);
}
f()
(3) Run the snippet
What is the expected result?
console prints "1"
What happens instead?
Nothing.
,
Oct 21
,
Oct 21
Tried this again. Seems to work now. Weird. Never mind then :) |
||
►
Sign in to add a comment |
||
Comment 1 by kozy@chromium.org
, Oct 14