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

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

Issue 2139043002: DevTools: show alternate title onexpand of object in console (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reuse dump() in tests Created 4 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: third_party/WebKit/LayoutTests/inspector/console/console-format-es6-2.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-format-es6-2.html b/third_party/WebKit/LayoutTests/inspector/console/console-format-es6-2.html
index d91417902b23b9d6f00419f994b128b131352cc8..46809892f81524dc301c45a480fd4b861ea72134 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-format-es6-2.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-format-es6-2.html
@@ -47,13 +47,15 @@ function test()
{
var next = current + 1;
if (next == total.description)
- InspectorTest.expandConsoleMessages(finish);
+ finish();
else
loopOverGlobals(next, total);
}
function finish()
{
+ InspectorTest.dumpConsoleMessages(false, false, InspectorTest.textContentWithLineBreaks);
+ InspectorTest.addResult("Expanded all messages");
InspectorTest.expandConsoleMessages(dumpConsoleMessages);
}

Powered by Google App Engine
This is Rietveld 408576698