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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/command-line-api-getEventListeners.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/console/command-line-api-getEventListeners.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/command-line-api-getEventListeners.html b/third_party/WebKit/LayoutTests/inspector/console/command-line-api-getEventListeners.html
index cbd67914d02719734363fb20019fc4a64feddbcd..96a21f8f303a2a430d2b6da409eca3ff50a8581d 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/command-line-api-getEventListeners.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/command-line-api-getEventListeners.html
@@ -38,6 +38,7 @@ document.getElementById("inner").addEventListener("wheel", listener2, {"passive"
document.getElementById("outer").addEventListener("mousemove", listener1, false);
document.getElementById("outer").addEventListener("mousedown", listener2, true);
document.getElementById("outer").addEventListener("keydown", listener2, true);
+document.getElementById("outer").addEventListener("keyup", listener2, {once: true});
window.addEventListener("popstate", listener1, false);
function dumpObject(object, prefix)

Powered by Google App Engine
This is Rietveld 408576698