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

Side by Side Diff: LayoutTests/dart/inspector/evaluate-in-console.html

Issue 21916002: Fix crashing bugs when dart code executed inside the debugger triggers breakpoints (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Ready to review Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/dart/inspector/evaluate-in-console-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <script src="../../http/tests/inspector/inspector-test.js"></script> 2 <script src="../../http/tests/inspector/inspector-test.js"></script>
3 <script src="../../http/tests/inspector/debugger-test.js"></script> 3 <script src="../../http/tests/inspector/debugger-test.js"></script>
4 4
5 <script type="application/dart" src="evaluate-in-console.dart"></script> 5 <script type="application/dart" src="evaluate-in-console.dart"></script>
6 6
7 <script> 7 <script>
8 if (window.navigator.webkitStartDart) 8 if (window.navigator.webkitStartDart)
9 navigator.webkitStartDart(); 9 navigator.webkitStartDart();
10 </script> 10 </script>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 } 46 }
47 } 47 }
48 48
49 var expressions = [ 49 var expressions = [
50 // Instance fields and methods. 50 // Instance fields and methods.
51 'test.instanceField', 51 'test.instanceField',
52 'test.instanceField = "new value"', 52 'test.instanceField = "new value"',
53 'test.foo', 53 'test.foo',
54 'test.foo = 3', 54 'test.foo = 3',
55 'test.foo', 55 'test.foo',
56 'test.somePropertyThatDoesntExist',
56 'test.toString()', 57 'test.toString()',
57 'test.toString(1)', 58 'test.toString(1)',
58 'test.create("x").instanceField', 59 'test.create("x").instanceField',
59 'test.concat(test.create("x"), test.create("y"))', 60 'test.concat(test.create("x"), test.create("y"))',
60 // Local variables and functions. 61 // Local variables and functions.
61 '_private', 62 '_private',
62 // Global fields and functions. 63 // Global fields and functions.
63 'globalField', 64 'globalField',
64 'calculateSquareRoot(25)', 65 'calculateSquareRoot(25)',
65 'new Element.tag("div").outerHtml', 66 'new Element.tag("div").outerHtml',
(...skipping 20 matching lines...) Expand all
86 InspectorTest.resumeExecution(next); 87 InspectorTest.resumeExecution(next);
87 }); 88 });
88 } 89 }
89 ]); 90 ]);
90 }; 91 };
91 </script> 92 </script>
92 93
93 <body onload="runTest()"> 94 <body onload="runTest()">
94 </body> 95 </body>
95 </html> 96 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/dart/inspector/evaluate-in-console-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698