blob: 12d5220ae824549c390f2ac20a4aec08bfbfa321 [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(`Verifies that links for URLs with spaces displayed properly for matched styles.\n`);
await TestRunner.loadModule('elements_test_runner');
await TestRunner.showPanel('elements');
await TestRunner.loadHTML(`
<div id="inspected"></div>
`);
await TestRunner.addStylesheetTag('../styles/resources/style-with-spaces-in-sourceURL.css');
ElementsTestRunner.selectNodeAndWaitForStyles('inspected', onNodeSelected);
async function onNodeSelected() {
await ElementsTestRunner.dumpSelectedElementStyles(true);
TestRunner.completeTest();
}
})();