blob: 4fe7620c15321a07df4cfa0a173256fb753a4864 [file] [log] [blame]
(async function(testRunner) {
var {page, session, dp} = await testRunner.startBlank(`Tests that DevTools doesn't crash on Runtime.evaluate with contextId equals 0.`);
testRunner.log(await dp.Runtime.evaluate({contextId: 0, expression: '' }));
testRunner.completeTest();
})