Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / console / console-log-wrapped-in-framework.html
bloba4bfe371d71e0e70516469a6b4fd3fd593942f21
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 src="resources/framework.js"></script>
6 <script>
8 function runLogs()
10 console.log("direct console.log()");
11 Framework.log("framework log");
14 function test()
16 var frameworkRegexString = "/framework\\.js$";
17 WebInspector.settingForTest("skipStackFramesPattern").set(frameworkRegexString);
19 InspectorTest.evaluateInPage("runLogs()");
20 InspectorTest.runAfterPendingDispatches(callback);
21 function callback()
23 InspectorTest.dumpConsoleMessages();
24 InspectorTest.completeTest();
28 </script>
29 </head>
30 <body onload="runTest()">
31 <p>
32 Tests console.log() anchor location when the skip-stack-frames feature is enabled.
33 </p>
34 </body>
35 </html>