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

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

Issue 2894413003: Rename interstitial_v2 files (Closed)
Patch Set: Fix rebase error Created 3 years, 6 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 <meta name="viewport" content="width=device-width">
5 <style>
6 body {
7 font-family: sans-serif;
8 line-height: 1.4;
9 }
10
11 h3, h4 {
12 margin-bottom: 0.5em;
13 }
14
15 ul {
16 margin-top: 0.5em;
17 }
18 </style>
19 </head>
20 <body>
21 <h2>Choose an interstitial</h2>
22 <h3>SSL</h3>
23 <ul>
24 <li>
25 <a href="ssl?overridable=1&strict_enforcement=0">example.com (generic, ove rridable)</a>
26 </li>
27 <li>
28 <a href="ssl?overridable=0&strict_enforcement=0">
29 example.com (generic, non-overridable)
30 </a>
31 </li>
32 <li>
33 <a href="ssl?overridable=0&strict_enforcement=1">
34 example.com (HSTS, non-overridable)
35 </a>
36 </li>
37 <li>
38 <a href="clock?clock_manipulation=2">Clock is ahead</a>
39 </li>
40 <li>
41 <a href="clock?clock_manipulation=-2">Clock is behind</a>
42 </li>
43 </ul>
44 <h3>SafeBrowsing</h3>
45 <h4>Loud</h4>
46 <ul>
47 <li>
48 <a href="safebrowsing?type=malware">Malware</a>
49 </li>
50 <li>
51 <a href="safebrowsing?type=phishing">Phishing</a>
52 </li>
53 <li>
54 <a href="safebrowsing?type=clientside_malware">Client Side Malware</a>
55 </li>
56 <li>
57 <a href="safebrowsing?type=clientside_phishing">Client Side Phishing</a>
58 </li>
59 </ul>
60 <h4>Quiet (WebView)</h4>
61 <ul>
62 <li>
63 <a href="quietsafebrowsing?type=malware">Malware</a>
64 </li>
65 <li>
66 <a href="quietsafebrowsing?type=phishing">Phishing</a>
67 </li>
68 <li>
69 <a href="quietsafebrowsing?type=giant">Giant</a>
70 </li>
71 </ul>
72 <h3>Captive Portal</h3>
73 <ul>
74 <li>
75 <a href="captiveportal">Captive Portal, Non-WiFi</a>
76 </li>
77 <li>
78 <a href="captiveportal?is_wifi=1">
79 Captive Portal, WiFi
80 </a>
81 </li>
82 <li>
83 <a href="captiveportal?is_wifi=1&wifi_name=CoffeeShopWiFi">
84 Captive Portal, WiFi with network name "CoffeeShopWiFi"
85 </a>
86 </li>
87 </ul>
88 <h3>Supervised Users</h3>
89 <ul>
90 <li>
91 <a href="supervised_user">
92 Supervised User
93 </a>
94 </li>
95 </ul>
96 </body>
97 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698