blob: 5df6ba3ddd9bc33b72d8da365b94795e6fd0e952 [file] [log] [blame]
// Copyright 2019 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 accessibility in the Sources panel Navigator pane Contentscripts tab using axe-core.');
// axe-core issue #1444 -- role="tree" requires children with role="treeitem",
// but it is reasonable to have trees with no leaves.
const NO_REQUIRED_CHILDREN_RULESET = {
'aria-required-children': {
enabled: false,
},
};
await TestRunner.loadModule('axe_core_test_runner');
await TestRunner.loadModule('sdk_test_runner');
await TestRunner.loadModule('sources_test_runner');
await UI.viewManager.showView('sources');
await setup();
await testA11yForView(NO_REQUIRED_CHILDREN_RULESET);
TestRunner.completeTest();
async function setup() {
// Add content scripts
var pageMock = new SDKTestRunner.PageMock('http://example.com');
pageMock.connectAsMainTarget('page-target');
const url = 'contentScript1.js';
pageMock.evalScript(url, 'var script', true /* isContentScript */);
await TestRunner.waitForUISourceCode(url)
}
async function testA11yForView(ruleSet) {
await UI.viewManager.showView('navigator-contentScripts');
const sourcesNavigatorView = new Sources.ContentScriptsNavigatorView();
sourcesNavigatorView.show(UI.inspectorView.element);
SourcesTestRunner.dumpNavigatorView(sourcesNavigatorView);
const element = UI.panels.sources._navigatorTabbedLocation._tabbedPane.element;
await AxeCoreTestRunner.runValidation(element, ruleSet);
}
})();