| 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"> |
| 11 <script src="../js_test_tools/mocha/mocha.js"></script> | 11 <script src="../js_test_tools/mocha/mocha.js"></script> |
| 12 <script src="../js_test_tools/chai/chai.js"></script> | 12 <script src="../js_test_tools/chai/chai.js"></script> |
| 13 <script src="../js_test_tools/mocha-htmltest.js"></script> | 13 <script src="../js_test_tools/mocha-htmltest.js"></script> |
| 14 | 14 |
| 15 <!-- Runtime code to test --> | 15 <!-- Runtime code to test --> |
| 16 <script src="../../lib/runtime/harmony_feature_check.js"></script> |
| 16 <script src="../../lib/runtime/dart_runtime.js"></script> | 17 <script src="../../lib/runtime/dart_runtime.js"></script> |
| 18 <script src="../../lib/runtime/dart/core.js"></script> |
| 19 <script src="../../lib/runtime/dart/collection.js"></script> |
| 20 <script src="../../lib/runtime/dart/_internal.js"></script> |
| 21 <script src="../../lib/runtime/dart/math.js"></script> |
| 17 | 22 |
| 18 <!-- tests --> | 23 <!-- tests --> |
| 19 <div id="mocha"></div> | 24 <div id="mocha"></div> |
| 20 <script>mocha.setup({ui: 'tdd', slow: 1000});</script> | 25 <script>mocha.setup({ui: 'tdd', slow: 1000});</script> |
| 21 <script src="runtime_tests.js"></script> | 26 <script src="runtime_tests.js"></script> |
| 22 <script>mocha.run();</script> | 27 <script>mocha.run();</script> |
| OLD | NEW |