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

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

Issue 2894243002: Add quiet safe browsing interstitials to chrome://interstitials for in browser testing (Closed)
Patch Set: Merge and fix display_options 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
« no previous file with comments | « chrome/browser/ui/webui/interstitials/interstitial_ui_browsertest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>Interstitials</title> 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>
4 </head> 19 </head>
5 <body> 20 <body>
6 <h2>Choose an interstitial</h2> 21 <h2>Choose an interstitial</h2>
7 <h3>SSL</h3> 22 <h3>SSL</h3>
8 <div> 23 <ul>
9 <a href="ssl?overridable=1&strict_enforcement=0">example.com (generic, overr idable)</a> 24 <li>
10 </div> 25 <a href="ssl?overridable=1&strict_enforcement=0">example.com (generic, ove rridable)</a>
11 <div> 26 </li>
12 <a href="ssl?overridable=0&strict_enforcement=0"> 27 <li>
13 example.com (generic, non-overridable) 28 <a href="ssl?overridable=0&strict_enforcement=0">
14 </a> 29 example.com (generic, non-overridable)
15 </div> 30 </a>
16 <div> 31 </li>
17 <a href="ssl?overridable=0&strict_enforcement=1"> 32 <li>
18 example.com (HSTS, non-overridable) 33 <a href="ssl?overridable=0&strict_enforcement=1">
19 </a> 34 example.com (HSTS, non-overridable)
20 </div> 35 </a>
21 <div> 36 </li>
22 <a href="clock?clock_manipulation=2">Clock is ahead</a> 37 <li>
23 </div> 38 <a href="clock?clock_manipulation=2">Clock is ahead</a>
24 <div> 39 </li>
25 <a href="clock?clock_manipulation=-2">Clock is behind</a> 40 <li>
26 </div> 41 <a href="clock?clock_manipulation=-2">Clock is behind</a>
42 </li>
43 </ul>
27 <h3>SafeBrowsing</h3> 44 <h3>SafeBrowsing</h3>
28 <div> 45 <h4>Loud</h4>
29 <a href="safebrowsing?type=malware">Malware</a> 46 <ul>
30 </div> 47 <li>
31 <div> 48 <a href="safebrowsing?type=malware">Malware</a>
32 <a href="safebrowsing?type=phishing">Phishing</a> 49 </li>
33 </div> 50 <li>
34 <div> 51 <a href="safebrowsing?type=phishing">Phishing</a>
35 <a href="safebrowsing?type=clientside_malware">Client Side Malware</a> 52 </li>
36 </div> 53 <li>
37 <div> 54 <a href="safebrowsing?type=clientside_malware">Client Side Malware</a>
38 <a href="safebrowsing?type=clientside_phishing">Client Side Phishing</a> 55 </li>
39 </div> 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>
40 <h3>Captive Portal</h3> 72 <h3>Captive Portal</h3>
41 <div> 73 <ul>
42 <a href="captiveportal">Captive Portal, Non-WiFi</a> 74 <li>
43 </div> 75 <a href="captiveportal">Captive Portal, Non-WiFi</a>
44 <div> 76 </li>
45 <a href="captiveportal?is_wifi=1"> 77 <li>
46 Captive Portal, WiFi 78 <a href="captiveportal?is_wifi=1">
47 </a> 79 Captive Portal, WiFi
48 </div> 80 </a>
49 <div> 81 </li>
50 <a href="captiveportal?is_wifi=1&wifi_name=CoffeeShopWiFi"> 82 <li>
51 Captive Portal, WiFi with network name "CoffeeShopWiFi" 83 <a href="captiveportal?is_wifi=1&wifi_name=CoffeeShopWiFi">
52 </a> 84 Captive Portal, WiFi with network name "CoffeeShopWiFi"
53 </div> 85 </a>
86 </li>
87 </ul>
54 <h3>Supervised Users</h3> 88 <h3>Supervised Users</h3>
55 <div> 89 <ul>
56 <a href="supervised_user"> 90 <li>
57 Supervised User 91 <a href="supervised_user">
58 </a> 92 Supervised User
59 </div>> 93 </a>
94 </li>
95 </ul>
60 </body> 96 </body>
61 </html> 97 </html>
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/interstitials/interstitial_ui_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698