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

Unified Diff: test/inspector/debugger/restore-breakpoint-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
« no previous file with comments | « test/inspector/debugger/restore-breakpoint.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/debugger/restore-breakpoint-expected.txt
diff --git a/test/inspector/debugger/restore-breakpoint-expected.txt b/test/inspector/debugger/restore-breakpoint-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ac23487bf8f6f0a6c794bc3b43a9580cd012a3d1
--- /dev/null
+++ b/test/inspector/debugger/restore-breakpoint-expected.txt
@@ -0,0 +1,76 @@
+Checks that debugger agent uses source content to restore breakpoints.
+
+Running test: testSameSource
+function foo() {
+#boo();
+}
+function foo() {
+#boo();
+}
+
+Running test: testOneLineOffset
+function foo() {
+#boo();
+}
+function foo() {
+#boo();
+boo();
+}
+
+Running test: testTwoSimilarLinesCloseToOriginalLocation1
+function foo() {
+
+
+#boo();
+}
+function foo() {
+#boo();
+
+newCode();
+boo();
+
+
+
+boo();
+}
+
+Running test: testTwoSimilarLinesCloseToOriginalLocation2
+function foo() {
+
+
+#boo();
+}
+function foo() {
+boo();
+newLongCode();
+newCode();
+#boo();
+
+
+
+boo();
+}
+
+Running test: testHintIgnoreWhiteSpaces
+function foo() {
+
+
+
+#boo();
+}
+function foo() {
+foo();
+
+
+#boo();
+}
+
+Running test: testCheckOnlyLimitedOffsets
+function foo() {
+#boo();
+}
+function foo() {
+#newCode();
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;...
+boo();
+}
« no previous file with comments | « test/inspector/debugger/restore-breakpoint.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698