4 <script type=
"text/javascript" src=
"../inspector-protocol/inspector-protocol-test.js"></script>
5 <script src=
"/resources/get-host-info.js"></script>
6 <script src=
"resources/mixed-content-type-test.js"></script>
8 // The test() function is defined in mixed-content-type-test.js and
9 // calls this function to add mixed content to the page.
10 function addIframeWithMixedContent()
12 var iframe
= document
.createElement("iframe");
13 iframe
.src
= get_host_info().HTTPS_ORIGIN
+ "/inspector-protocol/resources/active-mixed-content-iframe.html";
14 document
.body
.appendChild(iframe
);
18 <body onload=
"runTest()">
19 <p>Tests that willSendRequest contains the correct mixed content status for active mixed content.
</p>