moduleloader_test.html 832 B

12345678910111213141516171819202122232425262728293031
  1. <html>
  2. <!--
  3. Copyright 2009 The Closure Library Authors. All Rights Reserved.
  4. Use of this source code is governed by the Apache License, Version 2.0.
  5. See the COPYING file for details.
  6. -->
  7. <!--
  8. A regression test for goog.module.ModuleLoader.
  9. Unlike the unit tests for goog.module.ModuleManager, this uses
  10. asynchronous test cases and real XHRs.
  11. Author: nicksantos@google.com (Nick Santos)
  12. -->
  13. <head>
  14. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  15. <meta charset="UTF-8" />
  16. <title>JsUnit tests for goog.module.ModuleLoader</title>
  17. <script src='../base.js'></script>
  18. <script>
  19. goog.require('goog.module.ModuleLoaderTest');
  20. </script>
  21. </head>
  22. <body>
  23. <b>Note:</b>: If you are running this test off local disk on Chrome, it
  24. will fail unless you start Chrome with
  25. <code>--allow-file-access-from-files</code>.
  26. </body>
  27. </html>