OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- |
| 3 Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 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="dom_distribution_test.dart"> | 10 <link rel="x-dart-test" href="dom_distribution_test.dart"> |
6 <!--<script type="application/dart" src="dom_distribution_test.dart"></script>
--> | 11 <!--<script type="application/dart" src="dom_distribution_test.dart"></script>
--> |
7 <script src="packages/test/dart.js"></script> | 12 <script src="packages/test/dart.js"></script> |
8 </head> | 13 </head> |
9 <body> | 14 <body> |
10 <dom-module id="simple-element"> | 15 <dom-module id="simple-element"> |
11 <template> | 16 <template> |
(...skipping 11 matching lines...) Expand all Loading... |
23 </div> | 28 </div> |
24 </template> | 29 </template> |
25 </dom-module> | 30 </dom-module> |
26 <select-element> | 31 <select-element> |
27 <div id="invisible">I am invisible!!!!</div> | 32 <div id="invisible">I am invisible!!!!</div> |
28 <div class="selected" id="hello">hello!</div> | 33 <div class="selected" id="hello">hello!</div> |
29 </select-element> | 34 </select-element> |
30 | 35 |
31 </body> | 36 </body> |
32 </html> | 37 </html> |
OLD | NEW |