3 <script src=
"../../http/tests/inspector/inspector-test.js"></script>
4 <script src=
"../../http/tests/inspector/console-test.js"></script>
9 Child
.prototype = new Parent();
10 var outer
= { inner: function() { } };
11 console
.log(new Parent());
12 console
.log(new Child());
13 console
.log(new outer
.inner());
17 InspectorTest
.dumpConsoleMessages();
18 InspectorTest
.completeTest();
24 <body onload=
"runTest()">
26 Tests that the name of the function invoked as object constructor will be displayed as its type in the front-end.
27 <a href=
"https://bugs.webkit.org/show_bug.cgi?id=50063">Bug
50063.
</a>