3 <script src=
"../../http/tests/inspector/inspector-test.js"></script>
4 <script src=
"../../http/tests/inspector/console-test.js"></script>
23 function doEvalSource()
25 setTimeout(function() {
26 eval("(" + evalSource
+ ")()//# sourceURL=evalURL.js");
34 InspectorTest
.dumpConsoleMessages();
35 InspectorTest
.completeTest();
37 InspectorTest
.evaluateInPage("doEvalSource()");
38 InspectorTest
.addConsoleSniffer(callback
);
44 <body onload=
"runTest()">
46 Tests that when console.trace is called in eval'ed script ending
47 with //# sourceURL=url it will dump a stack trace that will have
48 the url as the script source.
<a href=
"https://bugs.webkit.org/show_bug.cgi?id=47252">Bug
47252.
</a>