OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../inspector-test.js"></script> | 3 <script src="../inspector-test.js"></script> |
4 <script src="../security-test.js"></script> | 4 <script src="../security-test.js"></script> |
5 <script> | 5 <script> |
6 function test() | 6 function test() |
7 { | 7 { |
8 var mixedContentStatus = { ranInsecureContent: false, displayedInsecureConte
nt: false}; | 8 /** @type {!SecurityAgent.InsecureContentStatus} */ |
| 9 var insecureContentStatus = { ranMixedContent: true, displayedMixedContent:
true, ranContentWithCertErrors: true, displayedContentWithCertErrors: true, ranI
nsecureContentStyle: SecurityAgent.SecurityState.Insecure, displayedInsecureCont
entStyle: SecurityAgent.SecurityState.Neutral }; |
9 | 10 |
10 InspectorTest.mainTarget.model(WebInspector.SecurityModel).dispatchEventToLi
steners(WebInspector.SecurityModel.Events.SecurityStateChanged, new WebInspector
.PageSecurityState(SecurityAgent.SecurityState.Secure, [], mixedContentStatus, t
rue)); | 11 InspectorTest.mainTarget.model(WebInspector.SecurityModel).dispatchEventToLi
steners(WebInspector.SecurityModel.Events.SecurityStateChanged, new WebInspector
.PageSecurityState(SecurityAgent.SecurityState.Insecure, [], insecureContentStat
us, true)); |
11 | 12 |
12 var request = new WebInspector.NetworkRequest(InspectorTest.mainTarget, 0, "
http://foo.test", "https://foo.test", 0, 0, null); | 13 var request = new WebInspector.NetworkRequest(InspectorTest.mainTarget, 0, "
http://foo.test", "https://foo.test", 0, 0, null); |
13 InspectorTest.dispatchRequestFinished(request); | 14 InspectorTest.dispatchRequestFinished(request); |
14 | 15 |
15 var explanations = WebInspector.SecurityPanel._instance()._mainView.contentE
lement.getElementsByClassName("security-explanation"); | 16 var explanations = WebInspector.SecurityPanel._instance()._mainView.contentE
lement.getElementsByClassName("security-explanation"); |
16 for (var i = 0; i < explanations.length; i++) | 17 for (var i = 0; i < explanations.length; i++) |
17 InspectorTest.dumpDeepInnerHTML(explanations[i]); | 18 InspectorTest.dumpDeepInnerHTML(explanations[i]); |
18 InspectorTest.completeTest(); | 19 InspectorTest.completeTest(); |
19 } | 20 } |
20 </script> | 21 </script> |
21 </head> | 22 </head> |
22 <body onload="runTest()"> | 23 <body onload="runTest()"> |
23 <p>Tests addition of explanation when all page resources are transferred securel
y (no-mixed-content).</p> | 24 <p>Tests addition of explanation when there was both mixed content and subresour
ces were loaded with certificate errors.</p> |
24 </body> | 25 </body> |
25 </html> | 26 </html> |
OLD | NEW |