blob: a410d22addebec419f54f81b27f56436f5bec464 [file] [log] [blame]
(async function(testRunner) {
var {page, session, dp} = await testRunner.startBlank('Tests checks that console.memory property can be set in strict mode (crbug.com/468611).');
var message = await dp.Runtime.evaluate({expression: '"use strict"\nconsole.memory = {};undefined'});
testRunner.log(message);
testRunner.completeTest();
})