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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="crashesTitle"></title>
6 <link rel="stylesheet" href="crashes.css">
7 <script src="chrome://resources/js/local_strings.js"></script>
8 <script src="chrome://resources/js/util.js"></script>
9 <script src="crashes.js"></script>
10 </head>
11 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
12 <header><h1 i18n-content="crashesTitle"></header>
arv (Not doing code reviews) 2011/02/20 23:44:00 Missing end tag for h1
13 <div id="enabledMode">
14 <h2 id="countBanner"></h2>
15 <div id="crashList"></div>
16 <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
17 </div>
18 <div id="disabledMode" class="hidden">
19 <h2 i18n-content="disabledHeader"></h2>
20 <p i18n-values=".innerHTML:disabledMessage"></p>
21 </div>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698