blob: 27b728430a5f39e8cf750ab825f0c781c11b88f4 [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 XML document contents are logged using the correct case in the console.\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
await TestRunner.evaluateInPagePromise(`
console.dirxml((new DOMParser()).parseFromString("<MixedCase> Test </MixedCase>", "text/xml"));
var danglingNode = document.implementation.createDocument("", "books");
console.dirxml(danglingNode.createElement("Book"));
`);
await TestRunner.showPanel('elements');
// Warm up elements renderer.
runtime.loadModulePromise('elements').then(function() {
ConsoleTestRunner.expandConsoleMessages(callback);
});
async function callback() {
await ConsoleTestRunner.dumpConsoleMessages();
TestRunner.completeTest();
}
})();