blob: 4131f33df4af9b124e2c1bee41e391e559101425 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(async function() {
TestRunner.addResult(`Verify that SourceMap bindings are generating UISourceCodes properly.\n`);
await TestRunner.loadModule('bindings_test_runner');
TestRunner.markStep('initialWorkspace');
var snapshot = BindingsTestRunner.dumpWorkspace();
TestRunner.markStep('createIframesAndWaitForSourceMaps');
await Promise.all([
BindingsTestRunner.attachFrame('frame1', './resources/sourcemap-frame.html', '_test_create-iframe1.js'),
BindingsTestRunner.attachFrame('frame2', './resources/sourcemap-frame.html', '_test_create-iframe2.js'),
BindingsTestRunner.waitForSourceMap('sourcemap-script.js.map'),
BindingsTestRunner.waitForSourceMap('sourcemap-style.css.map')
]);
snapshot = BindingsTestRunner.dumpWorkspace(snapshot);
TestRunner.markStep('detachFrame1');
await BindingsTestRunner.detachFrame('frame1', '_test_detachFrame1.js');
snapshot = BindingsTestRunner.dumpWorkspace(snapshot);
TestRunner.markStep('detachFrame2');
await BindingsTestRunner.detachFrame('frame2', '_test_detachFrame2.js');
snapshot = BindingsTestRunner.dumpWorkspace(snapshot);
TestRunner.completeTest();
})();