Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / console / console-xml-document.html
blob2cde53d2f9016ec46a53cf856741692b3cee55ee
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script>
6 <script>
7 function onload()
9 console.dirxml((new DOMParser()).parseFromString("<MixedCase> Test </MixedCase>", "text/xml"));
10 runTest();
12 //# sourceURL=console-xml-document.html
13 </script>
15 <script>
16 function test()
18 // Warm up elements renderer.
19 runtime.loadModulePromise("elements").then(function() {
20 InspectorTest.expandConsoleMessages(callback);
21 });
23 function callback()
25 InspectorTest.dumpConsoleMessages();
26 InspectorTest.completeTest();
29 </script>
30 </head>
32 <body onload="onload()">
33 <p>
34 Tests that XML document contents are logged using the correct case in the console.
35 </p>
37 </body>
38 </html>