1 <link rel=
"import" href=
"chrome://resources/polymer/polymer/polymer.html">
3 The <html-echo> injects given |content| into its innerHTML, bypassing HTML
4 escaping, which is always made by Polymer when we insert the result of an
5 Polymer expresion into element's body.
9 <html-echo content="<div>Hello</div>"></html-element>
11 will be equivalent to:
13 <span><div>Hello</div></span>
15 <polymer-element name=
"html-echo" attributes=
"content"></polymer-element>