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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-object-preview.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-object-preview.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-object-preview.html b/third_party/WebKit/LayoutTests/inspector/console/console-object-preview.html
index 840b3676704b0dc7608478267c82e49da18a4322..eea71366b1d5c300c2c6b5e8c15a1670a8bb62e8 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-object-preview.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-object-preview.html
@@ -76,9 +76,16 @@ function logToConsole()
function test()
{
- InspectorTest.evaluateInPage("logToConsole()", callback);
+ InspectorTest.evaluateInPage("logToConsole()", step2);
- function callback()
+ function step2()
+ {
+ InspectorTest.dumpConsoleMessages(false, true);
+ InspectorTest.addResult("Expanded all messages");
+ InspectorTest.expandConsoleMessages(step3);
+ }
+
+ function step3()
{
InspectorTest.dumpConsoleMessages(false, true);
InspectorTest.completeTest();

Powered by Google App Engine
This is Rietveld 408576698