// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {TestRunner} from 'test_runner';
import {ElementsTestRunner} from 'elements_test_runner';
import {ConsoleTestRunner} from 'console_test_runner';
(async function() {
TestRunner.addResult(`Tests highlights for display locking.\n`);
await TestRunner.showPanel('elements');
await TestRunner.loadHTML(`
<div id="container" style="content-visibility: hidden; contain-intrinsic-size: 10px;">
<div id="child" style="width: 50px; height: 50px; background: blue">Text</div>
</div>
`);
function dumpChild() {
ElementsTestRunner.dumpInspectorHighlightJSON('child', TestRunner.completeTest.bind(TestRunner));
}
function dumpContainerAndChild() {
ElementsTestRunner.dumpInspectorHighlightJSON('container', dumpChild);
}
dumpContainerAndChild();
})();