| Index: third_party/WebKit/LayoutTests/http/tests/inspector/security/mixed-content-active-and-passive-reload.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/security/mixed-content-active-and-passive-reload.html b/third_party/WebKit/LayoutTests/http/tests/inspector/security/mixed-content-active-and-passive-reload.html
|
| index c8f331cf723b7b29bcdad4c8a6d080b6f7e0f233..c71a431f86d2f658cc54a091c0d9d0e96f1eecf3 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/security/mixed-content-active-and-passive-reload.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/security/mixed-content-active-and-passive-reload.html
|
| @@ -8,26 +8,26 @@ function test()
|
| /** @type {!Protocol.Security.InsecureContentStatus} */
|
| var insecureContentStatus = { ranMixedContent: true, displayedMixedContent: true, ranContentWithCertErrors: false, displayedContentWithCertErrors: false, ranInsecureContentStyle: Protocol.Security.SecurityState.Insecure, displayedInsecureContentStyle: Protocol.Security.SecurityState.Neutral };
|
|
|
| - InspectorTest.mainTarget.model(WebInspector.SecurityModel).dispatchEventToListeners(WebInspector.SecurityModel.Events.SecurityStateChanged, new WebInspector.PageSecurityState(Protocol.Security.SecurityState.Neutral, [], insecureContentStatus, true));
|
| + InspectorTest.mainTarget.model(Security.SecurityModel).dispatchEventToListeners(Security.SecurityModel.Events.SecurityStateChanged, new Security.PageSecurityState(Protocol.Security.SecurityState.Neutral, [], insecureContentStatus, true));
|
|
|
| // At this point, the page has mixed content but no mixed requests have been recorded, so the user should be prompted to refresh.
|
| - var explanations = WebInspector.SecurityPanel._instance()._mainView.contentElement.getElementsByClassName("security-explanation");
|
| + var explanations = Security.SecurityPanel._instance()._mainView.contentElement.getElementsByClassName("security-explanation");
|
| for (var i = 0; i < explanations.length; i++)
|
| InspectorTest.dumpDeepInnerHTML(explanations[i]);
|
|
|
| // Now simulate a refresh.
|
|
|
| - InspectorTest.mainTarget.model(WebInspector.SecurityModel).dispatchEventToListeners(WebInspector.SecurityModel.Events.SecurityStateChanged, new WebInspector.PageSecurityState(Protocol.Security.SecurityState.Neutral, [], insecureContentStatus, true));
|
| + InspectorTest.mainTarget.model(Security.SecurityModel).dispatchEventToListeners(Security.SecurityModel.Events.SecurityStateChanged, new Security.PageSecurityState(Protocol.Security.SecurityState.Neutral, [], insecureContentStatus, true));
|
|
|
| - var passive = new WebInspector.NetworkRequest(InspectorTest.mainTarget, 0, "http://foo.test", "https://foo.test", 0, 0, null);
|
| + var passive = new SDK.NetworkRequest(InspectorTest.mainTarget, 0, "http://foo.test", "https://foo.test", 0, 0, null);
|
| passive.mixedContentType = "optionally-blockable";
|
| InspectorTest.dispatchRequestFinished(passive);
|
|
|
| - var active = new WebInspector.NetworkRequest(InspectorTest.mainTarget, 0, "http://foo.test", "https://foo.test", 0, 0, null);
|
| + var active = new SDK.NetworkRequest(InspectorTest.mainTarget, 0, "http://foo.test", "https://foo.test", 0, 0, null);
|
| active.mixedContentType = "blockable";
|
| InspectorTest.dispatchRequestFinished(active);
|
|
|
| - var explanations = WebInspector.SecurityPanel._instance()._mainView.contentElement.getElementsByClassName("security-explanation");
|
| + var explanations = Security.SecurityPanel._instance()._mainView.contentElement.getElementsByClassName("security-explanation");
|
| for (var i = 0; i < explanations.length; i++)
|
| InspectorTest.dumpDeepInnerHTML(explanations[i]);
|
| InspectorTest.completeTest();
|
|
|