Index: third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
index a5ee48bc326ebf8cc990af8ce8ed5d08f376dee4..53c190c528b25aba3bf657a8c0c1c3d74f5da820 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
+++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
@@ -425,11 +425,6 @@ WebInspector.ConsoleViewMessage.prototype = { |
titleElement.createTextChild(obj.description || ""); |
} |
} |
- if (obj.subtype === "proxy") { |
- var warning = titleElement.createChild("span", "object-state-note"); |
- warning.classList.add("warning-note"); |
- warning.title = WebInspector.UIString("Expansion of the Proxy object can lead to JavaScript execution."); |
- } |
var note = titleElement.createChild("span", "object-state-note"); |
note.classList.add("info-note"); |
note.title = WebInspector.UIString("Object value at left was snapshotted when logged, value below was evaluated just now."); |