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

Unified Diff: chrome/browser/resources/crashes.html

Issue 6545001: Implement chrome://crashes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addresses review comments Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/crashes.html
diff --git a/chrome/browser/resources/crashes.html b/chrome/browser/resources/crashes.html
new file mode 100644
index 0000000000000000000000000000000000000000..558ae0628099e13efb7d2da01b75f0e8adc3b61c
--- /dev/null
+++ b/chrome/browser/resources/crashes.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection;">
+<head>
+ <meta charset="utf-8">
+ <title i18n-content="crashesTitle"></title>
+ <link rel="stylesheet" href="crashes.css">
+ <script src="chrome://resources/js/local_strings.js"></script>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="crashes.js"></script>
+</head>
+<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+ <header><h1 i18n-content="crashesTitle"></header>
arv (Not doing code reviews) 2011/02/20 23:44:00 Missing end tag for h1
+ <div id="enabledMode">
+ <h2 id="countBanner"></h2>
+ <div id="crashList"></div>
+ <p id="noCrashes" i18n-content="noCrashesMessage" class="hidden"></div>
arv (Not doing code reviews) 2011/02/20 23:44:00 Wrong end tag.
arv (Not doing code reviews) 2011/02/20 23:44:00 or with hidden attribute <p id="noCrashes" i18n-c
+ </div>
+ <div id="disabledMode" class="hidden">
+ <h2 i18n-content="disabledHeader"></h2>
+ <p i18n-values=".innerHTML:disabledMessage"></p>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698