Commit 0b8e31e5 authored by Tim van der Lippe's avatar Tim van der Lippe Committed by Commit Bot

Remove DevTools startup layout test

This test appears to be a noop and it is unclear what the original
intention of the test was.

R=aerotwist@chromium.org

Change-Id: I9c398c0af9761f7ffdea8326c8be51f79dcd4f36
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2083309
Auto-Submit: Tim van der Lippe <tvanderlippe@chromium.org>
Commit-Queue: Paul Lewis <aerotwist@chromium.org>
Reviewed-by: default avatarPaul Lewis <aerotwist@chromium.org>
Cr-Commit-Position: refs/heads/master@{#746728}
parent ca998e0c
// 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() {
Root.Runtime._queryParamsObject.set('panel', 'sources');
await TestRunner.setupStartupTest('resources/pause-on-start.html');
TestRunner.addResult(
`Tests that tools pause on start.\n`);
SDK.targetManager.addModelListener(
SDK.DebuggerModel, SDK.DebuggerModel.Events.DebuggerPaused, (event) => {
const name = event.data.debuggerPausedDetails().callFrames[0].functionName;
TestRunner.addResult(name);
TestRunner.completeTest();
});
})();
<script>
function onload() {
testRunner.inspectSecondaryWindow();
setInterval(noop, 10);
}
function noop() {}
</script>
<body onload="onload()"></body>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment