| 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 ad125f1e87f3f5ffb06d90bd394f3db01ab199be..3df5797751549ce7f59352db22e1559778702e2d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/Tests.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/Tests.js
|
| @@ -913,6 +913,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();
|
|
|