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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-log-syntax-error.html

Issue 2170263002: [DevTools] Pass error object when reporting exceptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: worklets! Created 4 years, 4 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-test.js"></script> 4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <script src="resources/syntax-error.js"></script> 5 <script src="resources/syntax-error.js"></script>
6 <script> 6 <script>
7 function test() 7 function test()
8 { 8 {
9 InspectorTest.dumpConsoleMessages(undefined, undefined, InspectorTest.simple Formatter); 9 InspectorTest.dumpConsoleMessages();
10 InspectorTest.completeTest(); 10 InspectorTest.completeTest();
11 } 11 }
12 </script> 12 </script>
13 </head> 13 </head>
14 <body onload="runTest()"> 14 <body onload="runTest()">
15 <p> 15 <p>
16 Tests that syntax errors are logged into console and doesn't cause browser crash . 16 Tests that syntax errors are logged into console and doesn't cause browser crash .
17 </p> 17 </p>
18 </body> 18 </body>
19 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698