Roll leveldb 3f7758:803d69 (v1.17 -> v1.18)
[chromium-blink-merge.git] / chrome / test / data / safe_browsing / secure_link_features.html
blob1a1543c01ffa0f043992e6737aa581ddd57af2ed
1 <html><head><body>
2 <a href="login">this is secure</a>
3 <a href="http://host.com">not secure</a>
4 <a href="http://chromium.org/">also not secure</a>
6 <script>
7 var a = document.createElement('a');
8 var linkText = document.createTextNode("generated link to get port right. also secure");
9 a.appendChild(linkText);
10 a.href = "https://www2.host.com:" + location.port.toString() + "/login";
11 document.body.appendChild(a);
12 </script>
14 </body></html>