// Copyright 2017 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 {BindingsTestRunner} from 'bindings_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 that navigator is updated as frame gets navigated.\n`);
var sourcesNavigator = new Sources.SourcesNavigator.NetworkNavigatorView();
sourcesNavigator.show(UI.InspectorView.InspectorView.instance().element);
TestRunner.markStep('dumpInitialNavigator');
SourcesTestRunner.dumpNavigatorView(sourcesNavigator, false);
TestRunner.markStep('attachFrame');
await BindingsTestRunner.attachFrame('frame', './resources/magic-frame.html');
SourcesTestRunner.dumpNavigatorView(sourcesNavigator, false);
TestRunner.markStep('navigateFrame');
await BindingsTestRunner.navigateFrame('frame', './resource/empty-frame.html');
SourcesTestRunner.dumpNavigatorView(sourcesNavigator, false);
TestRunner.completeTest();
})();