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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/resources/net/network_errors_listing.html
diff --git a/content/browser/resources/accessibility/accessibility.html b/content/browser/resources/net/network_errors_listing.html
similarity index 56%
copy from content/browser/resources/accessibility/accessibility.html
copy to content/browser/resources/net/network_errors_listing.html
index 888a16c795c6ed9289144e5a29af591d8c6b7b6c..ebc4bbb6f38fa18d02bf8b3e48eec616f989259e 100644
--- a/content/browser/resources/accessibility/accessibility.html
+++ b/content/browser/resources/net/network_errors_listing.html
@@ -1,28 +1,27 @@
<!doctype html>
<html>
<!--
-Copyright (c) 2013 The Chromium Authors. All rights reserved.
+Copyright 2015 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<head>
<meta charset="utf-8">
- <title>Accessibility</title>
+ <title>Network errors</title>
+ <meta name="viewport" content="width=device-width">
+ <link rel="stylesheet" href="chrome://resources/css/roboto.css">
<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
- <link rel="stylesheet" href="accessibility.css">
+ <link rel="stylesheet" href="network_errors_listing.css">
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/load_time_data.js"></script>
- <script src="chrome://resources/js/action_link.js"></script>
<script src="chrome://resources/js/util.js"></script>
<script src="strings.js"></script>
- <script src="accessibility.js"></script>
+ <script src="network_errors_listing.js"></script>
</head>
<body>
- <h1>Accessibility</h1>
- <div id="global" class="row">Global accessibility mode:
- <a is="action-link" role="button" id="toggle_global" aria-labelledby="global"></a>
- </div>
+ <h1>Network errors</h1>
<div id="pages" class="list"></div>
+
<script src="chrome://resources/js/i18n_template.js"></script>
</body>
-</html>
+</html>

Powered by Google App Engine
This is Rietveld 408576698