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

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: fixed dbg tests Created 6 years, 3 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
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-dir-es6-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 04bc0b5cb5b1e41eec1173adc52c47ed8c04e4c5..473a439a3304ebeaa45dbb91baa2cec96de57251 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();
}
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-dir-es6-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698