OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <!-- | |
3 Copyright 2014 The Chromium Authors. All rights reserved. | |
4 Use of this source code is governed by a BSD-style license that can be found | |
5 in the LICENSE file. | |
6 --> | |
7 <div id="extension-load-error" hidden> | |
not at google - send to devlin
2014/04/25 21:00:34
it would be better if the "hidden" property were o
Devlin
2014/04/25 22:19:09
I don't think it can be, since it is done through
| |
8 <h2 i18n-content="extensionLoadErrorHeading">Extension Load Error</h2> | |
9 <div id="extension-load-error-message"> | |
10 <span i18n-content="extensionLoadErrorMessage"></span> | |
11 <span id="extension-load-error-path"></span> | |
12 </div> | |
13 <span id="extension-load-error-reason"></span> | |
14 <div id="extension-load-error-manifest" class="extension-code"></div> | |
15 <div id="extension-load-error-controls"> | |
16 <button id="extension-load-error-retry-button" | |
17 i18n-content="extensionLoadErrorRetry"></button> | |
18 <button id="extension-load-error-give-up-button" | |
19 i18n-content="extensionLoadErrorGiveUp"></button> | |
20 </div> | |
21 </div> | |
OLD | NEW |