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

Unified Diff: test/inspector/debugger/restore-provisional-breakpoint-by-line-expected.txt

Issue 2671193002: [inspector] restore provisional breakpoints smarter (Closed)
Patch Set: addressed comments Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: test/inspector/debugger/restore-provisional-breakpoint-by-line-expected.txt
diff --git a/test/inspector/debugger/restore-provisional-breakpoint-by-line-expected.txt b/test/inspector/debugger/restore-provisional-breakpoint-by-line-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..30b7abbdb1427c0f3d95772cdf043b0b67b49ced
--- /dev/null
+++ b/test/inspector/debugger/restore-provisional-breakpoint-by-line-expected.txt
@@ -0,0 +1,90 @@
+
+Running test: trivial
+{
+ id : <messageId>
+ result : {
+ breakpointId : <breakpointId>
+ locations : [
+ [0] : {
+ columnNumber : 2
+ lineNumber : 8
+ scriptId : <scriptId>
+ }
+ ]
+ }
+}
+test (test1.js:8:2)
+break at' return 42;'
+{
+ method : Debugger.breakpointResolved
+ params : {
+ breakpointId : <breakpointId>
+ location : {
+ columnNumber : 2
+ lineNumber : 17
+ scriptId : <scriptId>
+ }
+ }
+}
+test (test1.js:17:2)
+break at' return 42;'
+
+Running test: dontCheckMoreThenNLines
+{
+ id : <messageId>
+ result : {
+ breakpointId : <breakpointId>
+ locations : [
+ [0] : {
+ columnNumber : 2
+ lineNumber : 8
+ scriptId : <scriptId>
+ }
+ ]
+ }
+}
+test (test2.js:8:2)
+break at' return 42;'
+{
+ method : Debugger.breakpointResolved
+ params : {
+ breakpointId : <breakpointId>
+ location : {
+ columnNumber : 0
+ lineNumber : 23
+ scriptId : <scriptId>
+ }
+ }
+}
+(anonymous) (test2.js:23:0)
+break at'console.log(239);'
+
+Running test: dontStoreLongStrings
+{
+ id : <messageId>
+ result : {
+ breakpointId : <breakpointId>
+ locations : [
+ [0] : {
+ columnNumber : 513
+ lineNumber : 14
+ scriptId : <scriptId>
+ }
+ ]
+ }
+}
+test (test3.js:14:513)
+break at';;;;;;;;;;;;;;;;;console.log(1);'
+{
+ method : Debugger.breakpointResolved
+ params : {
+ breakpointId : <breakpointId>
+ location : {
+ columnNumber : 513
+ lineNumber : 14
+ scriptId : <scriptId>
+ }
+ }
+}
+test (test3.js:14:513)
+break at';;;;;;;;;;;;;;;;;console.log(3);'

Powered by Google App Engine
This is Rietveld 408576698