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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/event-listener-sidebar-custom-framework.html

Issue 2490303003: Add once field to devtools so it can be queried by lighthouse. (Closed)
Patch Set: Created 4 years, 1 month 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/elements/event-listener-sidebar-custom-framework.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/event-listener-sidebar-custom-framework.html b/third_party/WebKit/LayoutTests/inspector/elements/event-listener-sidebar-custom-framework.html
index d0992d0a96b14a0d216a76749245c8c41b222a50..831d78c2b707f8eb186c25c00798e5771a972c30 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/event-listener-sidebar-custom-framework.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/event-listener-sidebar-custom-framework.html
@@ -36,8 +36,8 @@ function setupNormalPath()
function frameworkEventListeners(node)
{
if (node === inspectedNode) {
- return {eventListeners: [{type: "customFirst", useCapture: true, passive: false, handler: customFirstEventListener},
- {type: "customSecond", useCapture: false, passive: false, handler: customSecondEventListener}],
+ return {eventListeners: [{type: "customFirst", useCapture: true, passive: false, once: false, handler: customFirstEventListener},
+ {type: "customSecond", useCapture: false, passive: false, once: false, handler: customSecondEventListener}],
internalHandlers: [internalHandler]};
}
return {eventListeners: []};

Powered by Google App Engine
This is Rietveld 408576698