blob: ab1a08fff0a0d4e89e97eb394d19bb445c91606e [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 instrumentation for Timeline HitTest event.\n`);
await TestRunner.loadModule('performance_test_runner');
await TestRunner.showPanel('timeline');
await TestRunner.loadHTML(`<p>A text</p>`);
await TestRunner.evaluateInPagePromise(`
function performActions() {
var e = document.elementFromPoint(10, 10);
}`);
await PerformanceTestRunner.performActionsAndPrint('performActions()', 'HitTest');
})();