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

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

Issue 317703003: DevTools: Show internal properties in object preview in console. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixed tests Created 6 years, 6 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-format-es6.html
diff --git a/LayoutTests/inspector/console/console-format-es6.html b/LayoutTests/inspector/console/console-format-es6.html
index ed26f73318f3edc47cc6488f902a057547efdce3..290a581f90ba01172ee8bc5efa96cf05ef873936 100644
--- a/LayoutTests/inspector/console/console-format-es6.html
+++ b/LayoutTests/inspector/console/console-format-es6.html
@@ -16,13 +16,13 @@ function onload()
{
var smb1 = Symbol();
var smb2 = Symbol("a");
- var obj = new Object();
+ var obj = {};
obj[Symbol()] = 1;
obj[smb2] = 2;
obj["a"] = smb1;
globals = [
- smb1, smb2, obj
+ Promise.reject(-0), smb1, smb2, obj
];
runTest();
« no previous file with comments | « LayoutTests/inspector/console/console-format.html ('k') | LayoutTests/inspector/console/console-format-es6-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698