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

Side by Side Diff: pkg/polymer/example/scoped_style/my_test.html

Issue 23224003: move polymer.dart into dart svn (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Test Compopnent</title>
5 </head>
6 <body>
7 <polymer-element name="my-test" extends="div">
8 <template>
9 <style>
10 p { color: red;}
11 </style>
12 <p>Inside element, should be red</p>
13 </template>
14 <script type="application/dart">
15 import 'package:polymer/polymer.dart';
16
17 @CustomTag('my-test')
18 class MyTest extends PolymerElement {}
19 </script>
20 </polymer-element>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698