chromium/third_party/blink/web_tests/http/tests/devtools/oopif/oopif-navigator.js

// Copyright 2018 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';
import {SourcesTestRunner} from 'sources_test_runner';

import * as Sources from 'devtools/panels/sources/sources.js';
import * as UI from 'devtools/ui/legacy/legacy.js';

(async function() {
  TestRunner.addResult(`Verify navigator rendering with OOPIFs`);
  await TestRunner.showPanel('sources');

  var sourcesNavigatorView = new Sources.SourcesNavigator.NetworkNavigatorView();
  sourcesNavigatorView.show(UI.InspectorView.InspectorView.instance().element);

  await TestRunner.navigatePromise('resources/page.html');

  SourcesTestRunner.dumpNavigatorViewInAllModes(sourcesNavigatorView);
  TestRunner.completeTest();
})();