blob: f788862be08c00cb1d767200a469ab6e03f7ad3f [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 proper source lines are reported for the styles after unrecognizer / invalid selector.\n`);
await TestRunner.loadModule('elements_test_runner');
await TestRunner.showPanel('elements');
await TestRunner.loadHTML(`
<style>
/* Invalid selector */
.navbar-search .search-query:-moz-placeholder {
color: #cccccc;
}
#container {
padding: 15px;
}
</style>
<div id="container"></div>
`);
ElementsTestRunner.selectNodeAndWaitForStyles('container', step1);
function step1() {
TestRunner.addResult('Initial value');
ElementsTestRunner.dumpSelectedElementStyles(true, false, true);
var treeItem = ElementsTestRunner.getMatchedStylePropertyTreeItem('padding');
treeItem.applyStyleText('padding: 20px', false);
ElementsTestRunner.waitForStyles('container', step2);
}
function step2() {
TestRunner.addResult('After changing property');
ElementsTestRunner.dumpSelectedElementStyles(true, false, true);
TestRunner.completeTest();
}
})();