blob: 8fb585acff4fdabd83645d2a023d0e263c349e7d [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 node xPath construction\n`);
await TestRunner.loadModule('elements_test_runner');
await TestRunner.showPanel('elements');
await TestRunner.loadHTML(`
<style>
button {
color: red;
}
body {
border: 1px solid black;
font-weight: bold;
}
</style>
<div style="padding: 5px"> Hello </div>
<button> A red button </button>
<button style="color: green"> A green button </button>
`);
InspectorFrontendHost.copyText = text => {
TestRunner.addResult('InspectorFrontendHost.copyText:\n' + text)
};
await new Promise(x => ElementsTestRunner.expandElementsTree(x));
const element = ElementsTestRunner.firstElementsTreeOutline().rootElement();
await processElement(element);
TestRunner.completeTest();
async function processElement(element) {
if (element instanceof Elements.ElementsTreeElement && !element.isClosingTag() && element.node().nodeNameInCorrectCase() !== 'base') {
TestRunner.addResult('\n' + element.listItemElement.textContent);
await element._copyStyles();
}
for (const child of element.children()) {
await processElement(child);
}
}
})();