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

Side by Side Diff: chrome/browser/resources/extensions/extension_commands_overlay.html

Issue 10828382: Cleanup: Don't close single tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 8 years, 4 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
1 <!-- 1 <!--
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be found 3 * Use of this source code is governed by a BSD-style license that can be found
4 * in the LICENSE file. 4 * in the LICENSE file.
5 --> 5 -->
6 <div id="extensionCommandsOverlay" class="page"> 6 <div id="extensionCommandsOverlay" class="page">
7 <div class="close-button"></div> 7 <div class="close-button"></div>
8 <h1 i18n-content="extensionCommandsOverlay"></h1> 8 <h1 i18n-content="extensionCommandsOverlay"></h1>
9 <div class="content-area"> 9 <div class="content-area">
10 <div id="extension-command-list" 10 <div id="extension-command-list"
(...skipping 23 matching lines...) Expand all
34 </div> 34 </div>
35 </div> 35 </div>
36 </div> 36 </div>
37 37
38 <div class="extension-command-list-command-item-wrapper"> 38 <div class="extension-command-list-command-item-wrapper">
39 <div class="extension-command-list-command-item"> 39 <div class="extension-command-list-command-item">
40 <div class="extension-command-details"> 40 <div class="extension-command-details">
41 <div class="command-container"> 41 <div class="command-container">
42 <span class="command-description"></span> 42 <span class="command-description"></span>
43 <span class="command-shortcut-container"> 43 <span class="command-shortcut-container">
44 <span class="command-shortcut clearable" tabindex="0" /> 44 <span class="command-shortcut clearable" tabindex="0"></span>
45 </span> 45 </span>
46 </div> 46 </div>
47 </div> 47 </div>
48 </div> 48 </div>
49 </div> 49 </div>
50 </div> 50 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698