Index: LayoutTests/inspector/console/console-dir-es6.html |
diff --git a/LayoutTests/inspector/console/console-dir-es6.html b/LayoutTests/inspector/console/console-dir-es6.html |
index 2164a1d61b7668225127e7b04770375e5a0c5549..b90b4088d67535f94cb5793b5f1caa1826fce60b 100644 |
--- a/LayoutTests/inspector/console/console-dir-es6.html |
+++ b/LayoutTests/inspector/console/console-dir-es6.html |
@@ -26,6 +26,13 @@ function onload() |
console.dir(s); |
}); |
+ // Test circular dependency by entries. |
+ var s1 = new Set(); |
+ var s2 = new Set(); |
+ s1.add(s2); |
+ s2.add(s1); |
+ console.dir(s1); |
+ |
runTest(); |
} |