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); |