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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/command-line-api-getEventListeners.html

Issue 1779033003: DevTools: always use 16bit strings for inspector protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
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 2e0efe0220304ff8946bc138159f955f939da671..860e42f681803394ed1b898ab4de1ed4c7cfbab8 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
@@ -47,6 +47,7 @@ function dumpObject(object, prefix)
}
prefix = prefix || "";
var keys = Object.keys(object);
+ keys.sort();
for (var i = 0; i < keys.length; ++i) {
var value = object[keys[i]];
var nameWithPrefix = prefix + keys[i] + ": ";

Powered by Google App Engine
This is Rietveld 408576698