| Index: third_party/WebKit/Source/devtools/front_end/Tests.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/Tests.js b/third_party/WebKit/Source/devtools/front_end/Tests.js
|
| index 268f62c932c955791f0e865e38a48117adb0d2ee..34c582f47678ce17db02d19073e58e1b3731018d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/Tests.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/Tests.js
|
| @@ -899,6 +899,15 @@ TestSuite.prototype.testSettings = function()
|
| }
|
| }
|
|
|
| +TestSuite.prototype.testWindowInitializedOnNavigateBack = function()
|
| +{
|
| + var messages = WebInspector.multitargetConsoleModel.messages();
|
| + this.assertEquals(1, messages.length);
|
| + var text = messages[0].messageText;
|
| + if (text.indexOf("Uncaught") !== -1)
|
| + this.fail(text);
|
| +};
|
| +
|
| TestSuite.prototype.waitForTestResultsInConsole = function()
|
| {
|
| var messages = WebInspector.multitargetConsoleModel.messages();
|
|
|