| OLD | NEW |
| (Empty) | |
| 1 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 for details. All rights reserved. Use of this source code is governed by a |
| 3 BSD-style license that can be found in the LICENSE file. --> |
| 4 <!DOCTYPE html> |
| 5 <html> |
| 6 <head> |
| 7 <!-- The 'unsafe-eval' is required by Dart2JS only in its default mode. --> |
| 8 <meta http-equiv="X-WebKit-CSP" |
| 9 content="script-src https://dart.googlecode.com 'self' 'unsafe-eval'; object
-src 'self'"> |
| 10 <title>Dart JavaScript Interop Tests</title> |
| 11 <style type="text/css"> |
| 12 .unittest-table { font-family: monospace; border: 1px; } |
| 13 .unittest-pass { background: #6b3;} |
| 14 .unittest-fail { background: #d55;} |
| 15 .unittest-error { background: #a11;} |
| 16 .unittest-xml-log {opacity:0; color: white;} |
| 17 .test-area { display: none; } |
| 18 body { overflow: visible; } |
| 19 </style> |
| 20 </head> |
| 21 <body> |
| 22 <h1>Loading and running tests</h1> |
| 23 <script src="packages/unittest/test_controller.js"></script> |
| 24 <script type="application/dart" src="browser_tests.dart"></script> |
| 25 <script src="browser_tests_bootstrap.js"></script> |
| 26 <script src="packages/browser/dart.js"></script> |
| 27 <script src="packages/browser/interop.js"></script> |
| 28 </body> |
| 29 </html> |
| OLD | NEW |