chromium/third_party/blink/web_tests/inspector-protocol/serialization/protocol-passes-0x7f.js

(async function(/** @type {import('test_runner').TestRunner} */ 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();
})