Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | |
| 3 Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | |
|
Siggi Cherem (dart-lang)
2015/08/13 18:52:41
++ (Seems this might be the case on all of them)
jakemac
2015/08/13 19:14:29
Done.
| |
| 4 for details. All rights reserved. Use of this source code is governed by a | |
| 5 BSD-style license that can be found in the LICENSE file. | |
| 6 --> | |
| 2 <html> | 7 <html> |
| 3 <head> | 8 <head> |
| 4 <script src="packages/web_components/webcomponents.min.js"></script> | 9 <script src="packages/web_components/webcomponents.min.js"></script> |
| 5 <link rel="x-dart-test" href="polymer_mixin_test.dart"> | 10 <link rel="x-dart-test" href="polymer_mixin_test.dart"> |
| 6 <!--<script type="application/dart" src="polymer_mixin_test.dart"></script>--> | 11 <!--<script type="application/dart" src="polymer_mixin_test.dart"></script>--> |
| 7 <script src="packages/test/dart.js"></script></head> | 12 <script src="packages/test/dart.js"></script></head> |
| 8 <body> | 13 <body> |
| 9 <dom-module id="test-element"> | 14 <dom-module id="test-element"> |
| 10 <template> | 15 <template> |
| 11 <div id="parent"> | 16 <div id="parent"> |
| 12 parent | 17 parent |
| 13 <div id="child"> | 18 <div id="child"> |
| 14 child | 19 child |
| 15 </div> | 20 </div> |
| 16 </div> | 21 </div> |
| 17 </template> | 22 </template> |
| 18 </dom-module> | 23 </dom-module> |
| 19 </body> | 24 </body> |
| 20 </html> | 25 </html> |
| OLD | NEW |