Index: chrome/browser/resources/security_warnings/interstitial_ui.html |
diff --git a/chrome/browser/resources/security_warnings/interstitial_ui.html b/chrome/browser/resources/security_warnings/interstitial_ui.html |
index a2fc0275f41acf515e07ec85d43946e0505b7311..3e22e1ca6db281c3881ca8a8b160e474820719e9 100644 |
--- a/chrome/browser/resources/security_warnings/interstitial_ui.html |
+++ b/chrome/browser/resources/security_warnings/interstitial_ui.html |
@@ -3,19 +3,57 @@ |
<title>Interstitials</title> |
</head> |
<body> |
- <h2>Choose an interstitial<h2> |
- <h3>SSL</h3> |
- <a href='ssl'>example.com</a><br> |
- <a href='ssl?url=https://google.com'>SSL (google.com)</a><br> |
- <a href='ssl?overridable=1&strict_enforcement=0'>example.com (Overridable)</a> |
- <br> |
- <a href='ssl?clock_manipulation=2'>Clock is ahead</a><br> |
- <a href='ssl?clock_manipulation=-2'>Clock is behind</a><br> |
- <br><br> |
- <h3>SafeBrowsing</h3> |
- <a href='safebrowsing?type=malware'>Malware</a><br> |
- <a href='safebrowsing?type=phishing'>Phishing</a><br> |
- <a href='safebrowsing?type=clientside_malware'>Client Side Malware</a><br> |
- <a href='safebrowsing?type=clientside_phishing'>Client Side Phishing</a><br> |
+ <h2>Choose an interstitial</h2> |
+ <div> |
Bernhard Bauer
2015/06/24 08:00:12
You don't need this div; you only need one around
Bhanu Dev
2015/06/24 17:30:28
Done.
|
+ <h3>SSL</h3> |
+ <div> |
+ <a href='ssl'>example.com</a> |
+ </div> |
+ <div> |
+ <a href='ssl?url=https://google.com'>SSL (google.com)</a> |
+ </div> |
+ <div> |
+ <a href='ssl?overridable=1&strict_enforcement=0'> |
+ example.com (Overridable) |
+ </a> |
+ </div> |
+ <div> |
+ <a href='ssl?clock_manipulation=2'>Clock is ahead</a> |
+ </div> |
+ <div> |
+ <a href='ssl?clock_manipulation=-2'>Clock is behind</a> |
+ </div> |
+ </div> |
+ <div> |
+ <h3>SafeBrowsing</h3> |
+ <div> |
+ <a href='safebrowsing?type=malware'>Malware</a> |
+ </div> |
+ <div> |
+ <a href='safebrowsing?type=phishing'>Phishing</a> |
+ </div> |
+ <div> |
+ <a href='safebrowsing?type=clientside_malware'>Client Side Malware</a> |
+ </div> |
+ <div> |
+ <a href='safebrowsing?type=clientside_phishing'>Client Side Phishing</a> |
+ </div> |
+ </div> |
+ <div> |
+ <h3>Captive Portal</h3> |
+ <div> |
+ <a href='captiveportal'>google.com (Captive Portal, Non-Wifi)</a> |
+ </div> |
+ <div> |
+ <a href='captiveportal?is_wifi=1'> |
+ google.com (Captive Portal, on some Wifi) |
+ </a> |
+ </div> |
+ <div> |
+ <a href='captiveportal?is_wifi=1&wifi_name=CoffeeShopWifi'> |
+ google.com (CaptivePortal, on wifi "CoffeeShopWifi") |
+ </a> |
+ </div> |
+ </div> |
</body> |
</html> |