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

Unified Diff: LayoutTests/inspector/console/resources/framework.js

Issue 211493002: DevTools: Show user code location for wrapped console.log() calls. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 6 years, 9 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: LayoutTests/inspector/console/resources/framework.js
diff --git a/LayoutTests/inspector/console/resources/framework.js b/LayoutTests/inspector/console/resources/framework.js
new file mode 100644
index 0000000000000000000000000000000000000000..cad0a8b949362fc30a8753d26aceca580525dae5
--- /dev/null
+++ b/LayoutTests/inspector/console/resources/framework.js
@@ -0,0 +1,8 @@
+// A framework for testing.
+
+var Framework = {};
+
+Framework.log = function(msg)
+{
+ console.log(msg);
+}

Powered by Google App Engine
This is Rietveld 408576698