blob: f43dca3f845abf731fdf4ed18a49ae0aa1c0609c [file] [log] [blame]
(async function(testRunner) {
testRunner.log('Tests that \\0x7f passes through the protocol as is');
const page = await testRunner.createPage();
const session = await page.createSession();
const str = await session.evaluate(`"\x7f"`);
testRunner.log(`Got: "${str}", ${str.charCodeAt(0)} (length: ${str.length})`);
testRunner.completeTest();
})