Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / console / console-log-document-proto.html
blobb639c47ca9ec11ca6429005056adbf3adaa2d8be
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <script>
6 console.dir(document.__proto__);
8 function test()
10 InspectorTest.dumpConsoleMessages();
11 InspectorTest.completeTest();
13 </script>
14 </head>
15 <body onload="runTest()">
16 <p>
17 Test that console.dir(document.__proto__) won't result in an exception when the message
18 is formatted in the inspector.<a bug="https://bugs.webkit.org/show_bug.cgi?id=27169">Bug 27169.</a>
19 </p>
20 </body>
21 </html>