blob: 3c7c90f28d3adce87cb84a953dd6f2e6fe8382f5 [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 UISourceCodes are removed as iframes are getting detached.\n`);
await TestRunner.loadModule('bindings_test_runner');
TestRunner.markStep('initialWorkspace');
var snapshot = BindingsTestRunner.dumpWorkspace();
TestRunner.markStep('createIframes');
await Promise.all([
BindingsTestRunner.attachFrame('frame1', './resources/magic-frame.html', '_test_create-iframe1.js'),
BindingsTestRunner.attachFrame('frame2', './resources/magic-frame.html', '_test_create-iframe2.js'),
]);
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();
})();