blob: e94bfc02e25d9c8a265413f022b5c85b27849455 [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 that ignored document.write() called from an external asynchronously loaded script is reported to console as a warning\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.evaluateInPagePromise(`
function loadExternalScript()
{
var scriptElement = document.createElement("script");
scriptElement.src = "resources/external-script-with-document-write.js";
document.body.appendChild(scriptElement);
}
`);
ConsoleTestRunner.addConsoleSniffer(step1);
TestRunner.evaluateInPage('loadExternalScript()', function() {});
async function step1() {
await ConsoleTestRunner.dumpConsoleMessages();
TestRunner.completeTest();
}
})();