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] + ": "; |