| Index: third_party/WebKit/LayoutTests/inspector/console/console-revoke-error.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-revoke-error.html b/third_party/WebKit/LayoutTests/inspector/console/console-revoke-error.html
|
| index a212edd470a7ef65ba43888dfb6681aa0bed8885..b437f7fa4686981c6dcbb5509c99fa40c1f098be 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/console/console-revoke-error.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/console/console-revoke-error.html
|
| @@ -21,7 +21,7 @@ function handleSomeRejections()
|
| function test()
|
| {
|
| var messageAddedListener = InspectorTest.wrapListener(messageAdded);
|
| - InspectorTest.consoleModel.addEventListener(SDK.ConsoleModel.Events.MessageAdded, messageAddedListener);
|
| + InspectorTest.consoleModel.addEventListener(ConsoleModel.ConsoleModel.Events.MessageAdded, messageAddedListener);
|
|
|
| InspectorTest.addResult("Creating promise");
|
| InspectorTest.evaluateInPageWithTimeout("createPromises()");
|
| @@ -34,11 +34,11 @@ function test()
|
| return;
|
| messageNumber = 0;
|
|
|
| - InspectorTest.consoleModel.removeEventListener(SDK.ConsoleModel.Events.MessageAdded, messageAddedListener);
|
| + InspectorTest.consoleModel.removeEventListener(ConsoleModel.ConsoleModel.Events.MessageAdded, messageAddedListener);
|
| InspectorTest.addResult("");
|
|
|
| // Process array as a batch.
|
| - InspectorTest.consoleModel.addEventListener(SDK.ConsoleModel.Events.MessageUpdated, InspectorTest.wrapListener(messageUpdated));
|
| + InspectorTest.consoleModel.addEventListener(ConsoleModel.ConsoleModel.Events.MessageUpdated, InspectorTest.wrapListener(messageUpdated));
|
| InspectorTest.dumpConsoleCounters();
|
| InspectorTest.addResult("");
|
| InspectorTest.addResult("Handling promise");
|
|
|