Add new certificateProvider extension API.
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / login / html-echo.js
blob25821c86bb3a2df5af61ebc6fbc5001adf2b9d02
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.
5 Polymer({
6   is: 'html-echo',
8   properties: {
9     content: {
10       type: String,
11       observer: 'contentChanged_'
12     }
13   },
15   contentChanged_: function(content) {
16     this.innerHTML = content;
17   }
18 });