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

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

Issue 668983004: Add <a is="action-link">, a web component extension of <a> for in-page actions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 6 years, 2 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
OLDNEW
1 <!-- 1 <!--
2 Copyright 2013 The Chromium Authors. All rights reserved. 2 Copyright 2013 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="template-collection-extension-error" hidden> 6 <div id="template-collection-extension-error" hidden>
7 <div class="extension-error-list"> 7 <div class="extension-error-list">
8 <ul class="extension-error-list-contents"></ul> 8 <ul class="extension-error-list-contents"></ul>
9 <div class="extension-error-list-show-more"> 9 <div class="extension-error-list-show-more">
10 <button class="link-button" 10 <a is="action-link" i18n-content="extensionErrorsShowMore" hidden></a>
11 i18n-content="extensionErrorsShowMore" hidden>
12 </button>
13 </div> 11 </div>
14 </div> 12 </div>
15 <div class="extension-error-metadata"> 13 <div class="extension-error-metadata">
16 <span class="extension-error-message"></span> 14 <span class="extension-error-message"></span>
17 <button class="extension-error-view-details link-button"></button> 15 <a is="action-link" class="extension-error-view-details"></a>
18 </div> 16 </div>
19 </div> 17 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698