blob: 1a6e7d040af13dbb9c6d8926cfdfd56c52f4bfa0 [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(
'Checks that we show correct location for script evaluated twice.\n');
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
await TestRunner.evaluateInPageAnonymously('console.log(1);//# sourceURL=a.js');
await TestRunner.evaluateInPageAnonymously('console.log(2);//# sourceURL=a.js');
await ConsoleTestRunner.dumpConsoleMessages();
TestRunner.completeTest();
})();