chromium/third_party/blink/web_tests/http/tests/devtools/show-context-menu.js

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import {TestRunner} from 'test_runner';

(async function() {
  TestRunner.addResult(`Tests type checks in DevToolsHost.showContextMenuAtPoint\n`);
  try {
    InspectorFrontendHost.showContextMenuAtPoint(1.1, 2.2, [0x41414141]);
  } catch (e) {
    TestRunner.completeTest();
  }
})();