| 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();
|
|
|