blob: 8c55ea007c1e8d734c11c43ad630111fa0f4e663 [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(
`Tests resources panel shows several resources with the same url if they were loaded with inspector already opened.\n`);
await TestRunner.loadModule('sources_test_runner');
await TestRunner.loadModule('application_test_runner');
await TestRunner.showPanel('resources');
TestRunner.addSniffer(Resources.FrameTreeElement.prototype, 'appendResource', onResource, true);
TestRunner.evaluateInPageAnonymously(`
(function loadIframe() {
var iframe = document.createElement("iframe");
iframe.src = "${TestRunner.url('resources/resource-tree-non-unique-url-iframe.html')}";
document.body.appendChild(iframe);
})();
`);
var cssRequestsCount = 0;
function onResource(resource) {
if (resource.url.match(/\.css$/) && ++cssRequestsCount === 2) {
TestRunner.addResult('Resources Tree:');
ApplicationTestRunner.dumpResourcesTree();
TestRunner.completeTest();
}
}
})();