Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: test/browser/index.html

Issue 1171843002: Load on demand (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Address comments Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/runtime/dart_runtime.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/harmony_feature_check.js"></script>
17 <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> 18 <script src="../../lib/runtime/dart/core.js"></script>
19 <script src="../../lib/runtime/dart/collection.js"></script> 19 <script src="../../lib/runtime/dart/collection.js"></script>
20 <script src="../../lib/runtime/dart/_internal.js"></script> 20 <script src="../../lib/runtime/dart/_internal.js"></script>
21 <script src="../../lib/runtime/dart/math.js"></script> 21 <script src="../../lib/runtime/dart/math.js"></script>
22 <script src="../../lib/runtime/dart/async.js"></script> 22 <script src="../../lib/runtime/dart/async.js"></script>
23 <script src="../../lib/runtime/dart/_foreign_helper.js"></script> 23 <script src="../../lib/runtime/dart/_foreign_helper.js"></script>
24 <script src="../../lib/runtime/dart/_js_embedded_names.js"></script> 24 <script src="../../lib/runtime/dart/_js_embedded_names.js"></script>
25 <script src="../../lib/runtime/dart/_js_names.js"></script>
26 <script src="../../lib/runtime/dart/_js_helper.js"></script> 25 <script src="../../lib/runtime/dart/_js_helper.js"></script>
27 <script src="../../lib/runtime/dart/isolate.js"></script> 26 <script src="../../lib/runtime/dart/isolate.js"></script>
28 <script src="../../lib/runtime/dart/typed_data.js"></script> 27 <script src="../../lib/runtime/dart/typed_data.js"></script>
29 <script src="../../lib/runtime/dart/_isolate_helper.js"></script> 28 <script src="../../lib/runtime/dart/_isolate_helper.js"></script>
30 <script src="../../lib/runtime/dart/_js_primitives.js"></script> 29 <script src="../../lib/runtime/dart/_js_primitives.js"></script>
31 <script src="../../lib/runtime/dart/_interceptors.js"></script> 30 <script src="../../lib/runtime/dart/_interceptors.js"></script>
32 <script src="../../lib/runtime/dart/convert.js"></script> 31 <script src="../../lib/runtime/dart/convert.js"></script>
33 <script src="../../lib/runtime/dart/_native_typed_data.js"></script> 32 <script src="../../lib/runtime/dart/_native_typed_data.js"></script>
34 <!-- tests --> 33 <!-- tests -->
35 <div id="mocha"></div> 34 <div id="mocha"></div>
36 <script>mocha.setup({ui: 'tdd', slow: 1000});</script> 35 <script>mocha.setup({ui: 'tdd', slow: 1000});</script>
37 <script src="runtime_tests.js"></script> 36 <script src="runtime_tests.js"></script>
38 <script>mocha.run();</script> 37 <script>mocha.run();</script>
OLDNEW
« no previous file with comments | « lib/runtime/dart_runtime.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698