repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Add new certificateProvider extension API.
[chromium-blink-merge.git]
/
chrome
/
browser
/
resources
/
pdf
/
elements
/
viewer-error-screen-legacy
/
viewer-error-screen-legacy.js
blob
cd09aed83be17fc442a508fe8691b1805c4c1470
1
// Copyright 2014 The Chromium Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
Polymer({
6
is: 'viewer-error-screen-legacy',
7
properties: {
8
text: String
9
},
10
11
show: function() {
12
this.style.visibility = 'visible';
13
}
14
});