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

Side by Side Diff: content/browser/resources/net/network_errors_listing.html

Issue 1421743002: Implement chrome://network-errors for direct access to network error interstitials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix presubmit errors Created 5 years 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
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <!-- 3 <!--
4 Copyright (c) 2013 The Chromium Authors. All rights reserved. 4 Copyright 2015 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title>Accessibility</title> 10 <title>Network errors</title>
11 <meta name="viewport" content="width=device-width">
12 <link rel="stylesheet" href="chrome://resources/css/roboto.css">
11 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 13 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
12 <link rel="stylesheet" href="accessibility.css"> 14 <link rel="stylesheet" href="network_errors_listing.css">
13 <script src="chrome://resources/js/cr.js"></script> 15 <script src="chrome://resources/js/cr.js"></script>
14 <script src="chrome://resources/js/load_time_data.js"></script> 16 <script src="chrome://resources/js/load_time_data.js"></script>
15 <script src="chrome://resources/js/action_link.js"></script>
16 <script src="chrome://resources/js/util.js"></script> 17 <script src="chrome://resources/js/util.js"></script>
17 <script src="strings.js"></script> 18 <script src="strings.js"></script>
18 <script src="accessibility.js"></script> 19 <script src="network_errors_listing.js"></script>
19 </head> 20 </head>
20 <body> 21 <body>
21 <h1>Accessibility</h1> 22 <h1>Network errors</h1>
22 <div id="global" class="row">Global accessibility mode:
23 <a is="action-link" role="button" id="toggle_global" aria-labelledby="global "></a>
24 </div>
25 <div id="pages" class="list"></div> 23 <div id="pages" class="list"></div>
24
26 <script src="chrome://resources/js/i18n_template.js"></script> 25 <script src="chrome://resources/js/i18n_template.js"></script>
27 </body> 26 </body>
28 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698