blob: 315fac966952785b8c5ff791a9512e3d6b088a59 [file] [log] [blame]
<html>
<head>
<script src="../../http/tests/inspector/inspector-test.js"></script>
<script src="../../http/tests/inspector/console-test.js"></script>
<script>
function onload()
{
console.dirxml((new DOMParser()).parseFromString("<MixedCase> Test </MixedCase>", "text/xml"));
runTest();
}
function test()
{
InspectorTest.expandConsoleMessages();
InspectorTest.runAfterPendingDispatches(callback);
function callback()
{
InspectorTest.dumpConsoleMessages();
InspectorTest.completeTest();
}
}
</script>
</head>
<body onload="onload()">
<p>
Tests that XML document contents are logged using the correct case in the console.
</p>
</body>
</html>