| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 2 <!-- Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 3 for details. All rights reserved. Use of this source code is governed by a | 3 for details. All rights reserved. Use of this source code is governed by a |
| 4 BSD-style license that can be found in the LICENSE file. --> | 4 BSD-style license that can be found in the LICENSE file. --> |
| 5 | 5 |
| 6 <meta charset="utf-8"> | 6 <meta charset="utf-8"> |
| 7 <title>dart-dev-compiler browser tests</title> | 7 <title>dart-dev-compiler browser tests</title> |
| 8 | 8 |
| 9 <!-- Mocha/Chai --> | 9 <!-- Mocha/Chai --> |
| 10 <link rel="stylesheet" href="../js_test_tools/mocha/mocha.css"> | 10 <link rel="stylesheet" href="../js_test_tools/mocha/mocha.css"> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 <script src="../../lib/runtime/dart/_isolate_helper.js"></script> | 35 <script src="../../lib/runtime/dart/_isolate_helper.js"></script> |
| 36 <script src="../../lib/runtime/dart/_js_primitives.js"></script> | 36 <script src="../../lib/runtime/dart/_js_primitives.js"></script> |
| 37 <script src="../../lib/runtime/dart/_interceptors.js"></script> | 37 <script src="../../lib/runtime/dart/_interceptors.js"></script> |
| 38 <script src="../../lib/runtime/dart/convert.js"></script> | 38 <script src="../../lib/runtime/dart/convert.js"></script> |
| 39 <script src="../../lib/runtime/dart/_native_typed_data.js"></script> | 39 <script src="../../lib/runtime/dart/_native_typed_data.js"></script> |
| 40 <!-- tests --> | 40 <!-- tests --> |
| 41 <div id="mocha"></div> | 41 <div id="mocha"></div> |
| 42 <script>mocha.setup({ui: 'tdd', slow: 1000});</script> | 42 <script>mocha.setup({ui: 'tdd', slow: 1000});</script> |
| 43 <script src="runtime_tests.js"></script> | 43 <script src="runtime_tests.js"></script> |
| 44 <script>mocha.run();</script> | 44 <script>mocha.run();</script> |
| OLD | NEW |