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">
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.
14 <html-echo content="<div>Hello</div>"></html-element>
16 will be equivalent to:
18 <span><div>Hello</div></span>
20 <dom-module name=
"html-echo"></dom-module>