Remove the old signature of NotificationManager::closePersistent().
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / login / html-echo.html
blobb6698dd47a12b4b0dc54d9c1f2254fd77729625d
1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
2 <!--
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.
7 Example:
9 <html-echo content="<div>Hello</div>"></html-element>
11 will be equivalent to:
13 <span><div>Hello</div></span>
14 -->
15 <polymer-element name="html-echo" attributes="content"></polymer-element>