blob: d1c4f6180d75355e6ae48c6c3c1fd430281d6a93 [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 that selector line is computed correctly regardless of its start column. Bug 110732.\n`);
await TestRunner.loadModule('elements_test_runner');
await TestRunner.loadModule('sources_test_runner');
await TestRunner.showPanel('elements');
await TestRunner.showPanel('sources');
await TestRunner.loadHTML(`
<style>
#inspected
{
color: green;
}
</style>
<div id="container">
<div id="inspected">Text</div>
</div>
`);
await TestRunner.addStylesheetTag('../styles/resources/selector-line.css');
SourcesTestRunner.waitForScriptSource('selector-line.scss', onSourceMapLoaded);
function onSourceMapLoaded() {
ElementsTestRunner.selectNodeAndWaitForStyles('inspected', step1);
}
async function step1() {
await ElementsTestRunner.dumpSelectedElementStyles(true);
TestRunner.completeTest();
}
})();