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

Unified Diff: LayoutTests/http/tests/inspector/elements-test.js

Issue 842323005: DevTools: Clean up the Event Listeners pane data representation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove listenerBody from the protocol Created 5 years, 11 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 | « no previous file | LayoutTests/inspector/elements/event-listener-sidebar-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/inspector/elements-test.js
diff --git a/LayoutTests/http/tests/inspector/elements-test.js b/LayoutTests/http/tests/inspector/elements-test.js
index 16e19cb71c54a8787ceabde111b9ab17667195e6..cfd4d2d23a1d4539b6c8b852efd82cbc983a40e4 100644
--- a/LayoutTests/http/tests/inspector/elements-test.js
+++ b/LayoutTests/http/tests/inspector/elements-test.js
@@ -351,18 +351,11 @@ InspectorTest.expandAndDumpSelectedElementEventListeners = function(callback)
var listenerItems = listenerTypes[i].children;
for (var j = 0; j < listenerItems.length; ++j) {
var objectPropertiesSection = listenerItems[j].listItemElement.firstChild._section;
- InspectorTest.dumpObjectPropertySection(objectPropertiesSection, {
- sourceName: formatSourceNameProperty
- });
+ InspectorTest.dumpObjectPropertySection(objectPropertiesSection, {});
}
}
callback();
}
-
- function formatSourceNameProperty(value)
- {
- return "[clipped-for-test]/" + value.replace(/(.*?\/)LayoutTests/, "LayoutTests");
- }
}
InspectorTest.dumpObjectPropertySection = function(section, formatters)
« no previous file with comments | « no previous file | LayoutTests/inspector/elements/event-listener-sidebar-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698