| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <!-- | |
| 3 Copyright (c) 2012, 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 --> | |
| 7 <html lang="en"> | |
| 8 <head> | |
| 9 <title>client_test</title> | |
| 10 </head> | |
| 11 <body> | |
| 12 <script type="application/javascript"> | |
| 13 if (navigator.webkitStartDart) { | |
| 14 navigator.webkitStartDart(); | |
| 15 } | |
| 16 </script> | |
| 17 <script type="application/dart"> | |
| 18 import "client_test.dart" as client_test; | |
| 19 import "url_template_test.dart" as url_template_test; | |
| 20 | |
| 21 main() { | |
| 22 client_test.main(); | |
| 23 url_template_test.main(); | |
| 24 } | |
| 25 </script> | |
| 26 </body> | |
| 27 </html> | |
| OLD | NEW |