blob: a171697ef4ca6d97e9817ab7ef8dcf296ce6ffba [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 () {
await TestRunner.loadModule('axe_core_test_runner');
TestRunner.addResult(`Tests accessibility in the rendering view using the axe-core linter.`);
await UI.viewManager.showView('rendering');
const renderingView = await UI.viewManager.view('rendering').widget();
await AxeCoreTestRunner.runValidation(renderingView.element);
TestRunner.completeTest();
})();