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

Unified Diff: LayoutTests/inspector/console/console-dir-es6.html

Issue 512003003: DevTools: Show preview in console of ES6 Map, Set, WeakMap and WeakSet entries. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix LocalJSON object description Created 6 years, 4 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: 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();
}

Powered by Google App Engine
This is Rietveld 408576698