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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-format.html

Issue 2514893004: DevTools: show array entries that are getters (Closed)
Patch Set: Add needsManualRebase to TE 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/console-format.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-format.html b/third_party/WebKit/LayoutTests/inspector/console/console-format.html
index c1f397996cc8466d9e9e7e294bde8066ecbdffb2..ed52872be5a9f57efcd399200ba463b355f7f07e 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-format.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-format.html
@@ -21,6 +21,7 @@ function onload()
var array = ["test", "test2"]; array.length = 10;
array.foo = {};
array[4] = "test4";
+ Object.defineProperty(array, 5, { get() { return 1 } });
var svg = document.getElementById("svg-node");
console.log(array);

Powered by Google App Engine
This is Rietveld 408576698