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

Side by Side Diff: third_party/polymer/components-chromium/core-layout/demo-body.html

Issue 592593002: Inline scripts were extracted from Polymer elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/echo ""/echo/ 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>core-layout demo</title>
5
6 <script src="../platform/platform.js"></script>
7 <link rel="import" href="core-layout.html">
8 <style>
9 .scroll {
10 overflow: auto;
11 }
12
13 .content {
14 height: 2000px;
15 }
16
17 div {
18 border: 3px solid green;
19 padding: 10px;
20 }
21 </style>
22 </head>
23 <body is="polymer-body" class="core-fit" unresolved>
24 <core-layout vertical></core-layout>
25 <div>Header</div>
26 <div class="scroll core-flex">
27 <section class="content"></section>
28 </div>
29 <div>Footer</div>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698