Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Side by Side Diff: chrome/browser/resources/chromeos/login/html-echo.html

Issue 642313002: Implemented UI for the meetings controller out-of-box. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@merge_point
Patch Set: Empty line removed. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <link rel="import" href="polymer/polymer/polymer.html">
1 <!-- 2 <!--
2 The <html-echo> injects given |content| into its innerHTML, bypassing HTML 3 The <html-echo> injects given |content| into its innerHTML, bypassing HTML
3 escaping, which is always made by Polymer when we insert the result of an 4 escaping, which is always made by Polymer when we insert the result of an
4 Polymer expresion into element's body. 5 Polymer expresion into element's body.
5 6
6 Example: 7 Example:
7 8
8 <html-echo content="<div>Hello</div>"></html-element> 9 <html-echo content="<div>Hello</div>"></html-element>
9 10
10 will be equivalent to: 11 will be equivalent to:
11 12
12 <span><div>Hello</div></span> 13 <span><div>Hello</div></span>
13 --> 14 -->
14 <polymer-element name="html-echo" attributes="content"></polymer-element> 15 <polymer-element name="html-echo" attributes="content"></polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698