Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: LayoutTests/inspector/console-format.html

Issue 6282016: Merge 76683 - 2011-01-26 Pavel Feldman <pfeldman@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../http/tests/inspector/inspector-test.js"></script> 3 <script src="../http/tests/inspector/inspector-test.js"></script>
4 <script src="../http/tests/inspector/console-tests.js"></script> 4 <script src="../http/tests/inspector/console-tests.js"></script>
5 <script> 5 <script>
6 6
7 // Global Values 7 // Global Values
8 var globals = []; 8 var globals = [];
9 9
10 function doit() 10 function doit()
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 } 73 }
74 74
75 function frontend_evalExpression(expression) 75 function frontend_evalExpression(expression)
76 { 76 {
77 var self = WebInspector.console; 77 var self = WebInspector.console;
78 function printResult(result) 78 function printResult(result)
79 { 79 {
80 self.addMessage(new WebInspector.ConsoleCommandResult(result, expression )); 80 self.addMessage(new WebInspector.ConsoleCommandResult(result, expression ));
81 } 81 }
82 82
83 self.evalInInspectedWindow(expression, "console", printResult); 83 self.evalInInspectedWindow(expression, "console", false, printResult);
84 } 84 }
85 85
86 </script> 86 </script>
87 </head> 87 </head>
88 88
89 <body onload="onload()"> 89 <body onload="onload()">
90 <div id="x"></div> 90 <div id="x"></div>
91 <p> 91 <p>
92 Tests that console logging dumps proper messages. 92 Tests that console logging dumps proper messages.
93 </p> 93 </p>
94 94
95 </body> 95 </body>
96 </html> 96 </html>
OLDNEW
« no previous file with comments | « LayoutTests/inspector/console-dir-global.html ('k') | Source/WebCore/inspector/front-end/ExtensionPanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698