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

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

Issue 23735003: Get rid of doctype warning in analyzer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Test Compopnent</title>
5 </head>
6 <body>
7 <polymer-element name="my-test"> 1 <polymer-element name="my-test">
8 <template> 2 <template>
9 <style> 3 <style>
10 p { color: red;} 4 p { color: red;}
11 </style> 5 </style>
12 <p>Inside element, should be red</p> 6 <p>Inside element, should be red</p>
13 </template> 7 </template>
14 <script type="application/dart"> 8 <script type="application/dart">
15 import 'package:polymer/polymer.dart'; 9 import 'package:polymer/polymer.dart';
16 10
17 @CustomTag('my-test') 11 @CustomTag('my-test')
18 class MyTest extends PolymerElement {} 12 class MyTest extends PolymerElement {}
19 </script> 13 </script>
20 </polymer-element> 14 </polymer-element>
21 </body>
22 </html>
OLDNEW
« no previous file with comments | « pkg/polymer/example/component/news/web/news-component.html ('k') | pkg/polymer/lib/src/compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698