Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: components/security_interstitials/core/browser/resources/interstitial_ui.html

Issue 2894413003: Rename interstitial_v2 files (Closed)
Patch Set: Add the new filenames Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>Interstitials</title>
4 </head>
5 <body>
6 <h2>Choose an interstitial</h2>
7 <h3>SSL</h3>
8 <div>
9 <a href="ssl?overridable=1&strict_enforcement=0">example.com (generic, overr idable)</a>
10 </div>
11 <div>
12 <a href="ssl?overridable=0&strict_enforcement=0">
13 example.com (generic, non-overridable)
14 </a>
15 </div>
16 <div>
17 <a href="ssl?overridable=0&strict_enforcement=1">
18 example.com (HSTS, non-overridable)
19 </a>
20 </div>
21 <div>
22 <a href="clock?clock_manipulation=2">Clock is ahead</a>
23 </div>
24 <div>
25 <a href="clock?clock_manipulation=-2">Clock is behind</a>
26 </div>
27 <h3>SafeBrowsing</h3>
28 <div>
29 <a href="safebrowsing?type=malware">Malware</a>
30 </div>
31 <div>
32 <a href="safebrowsing?type=phishing">Phishing</a>
33 </div>
34 <div>
35 <a href="safebrowsing?type=clientside_malware">Client Side Malware</a>
36 </div>
37 <div>
38 <a href="safebrowsing?type=clientside_phishing">Client Side Phishing</a>
39 </div>
40 <h3>Captive Portal</h3>
41 <div>
42 <a href="captiveportal">Captive Portal, Non-WiFi</a>
43 </div>
44 <div>
45 <a href="captiveportal?is_wifi=1">
46 Captive Portal, WiFi
47 </a>
48 </div>
49 <div>
50 <a href="captiveportal?is_wifi=1&wifi_name=CoffeeShopWiFi">
51 Captive Portal, WiFi with network name "CoffeeShopWiFi"
52 </a>
53 </div>
54 <h3>Supervised Users</h3>
55 <div>
56 <a href="supervised_user">
57 Supervised User
58 </a>
59 </div>>
60 </body>
61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698