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

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

Issue 1268353005: [DevTools] Support JQuery event listeners (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 638d7e2ee89a0bef4f7b9d2073cead033ccb3aec..0b8709a13464b4b64fca6f17aad8ce139dde9914 100644
--- a/LayoutTests/http/tests/inspector/elements-test.js
+++ b/LayoutTests/http/tests/inspector/elements-test.js
@@ -461,8 +461,10 @@ InspectorTest.expandAndDumpSelectedElementEventListeners = function(callback)
InspectorTest.addResult("");
InspectorTest.addResult("======== " + eventType + " ========");
var listenerItems = listenerTypes[i].children();
- for (var j = 0; j < listenerItems.length; ++j)
+ for (var j = 0; j < listenerItems.length; ++j) {
+ InspectorTest.addResult("== " + listenerItems[j].eventListener().listenerType());
InspectorTest.dumpObjectPropertyTreeElement(listenerItems[j]);
+ }
}
callback();
}
« 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