Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / login / html-echo.html
blobf6aa348fe062fb3d46bf7aaf9df3d8635d2fa884
1 <!-- Copyright 2015 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 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
7 <!--
8 The <html-echo> injects given |content| into its innerHTML, bypassing HTML
9 escaping, which is always made by Polymer when we insert the result of an
10 Polymer expression into element's body.
12 Example:
14 <html-echo content="<div>Hello</div>"></html-element>
16 will be equivalent to:
18 <span><div>Hello</div></span>
19 -->
20 <dom-module name="html-echo"></dom-module>