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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/debugger/resources/mixed.js

Issue 2968523003: [DevTools] Migrate inspector-protocol/debugger tests to new harness (Closed)
Patch Set: all tests Created 3 years, 6 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: third_party/WebKit/LayoutTests/inspector-protocol/debugger/resources/mixed.js
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/debugger/resources/mixed.js b/third_party/WebKit/LayoutTests/inspector-protocol/debugger/resources/mixed.js
deleted file mode 100644
index df01a0e9e679ee114053a93b61519610d2f10061..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector-protocol/debugger/resources/mixed.js
+++ /dev/null
@@ -1,21 +0,0 @@
-function notBlackboxedFoo()
-{
- var a = 42;
- var b = blackboxedBoo();
- return a + b;
-}
-
-function blackboxedFoo()
-{
- var a = 42;
- var b = notBlackboxedFoo();
- return a + b;
-}
-
-function notBlackboxedBoo()
-{
- var a = 42;
- var b = blackboxedFoo();
- return a + b;
-}
-//# sourceURL=mixed-source.js

Powered by Google App Engine
This is Rietveld 408576698