blob: d3aeeba7a9279efa40c330f5306e44c718ff4b34 [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(`\n`);
await TestRunner.loadModule('elements_test_runner');
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('elements');
await TestRunner.loadHTML(`
<style>
body {
margin: 0;
}
iframe {
position: absolute;
left: 83px;
top: 53px;
width: 200px;
height: 200px;
}
</style>
<iframe id="transform-iframe" src="resources/highlight-node-transformed-iframe.html"></iframe>
`);
ElementsTestRunner.dumpInspectorHighlightJSON('div', TestRunner.completeTest.bind(TestRunner));
})();