base_test.html 725 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2006 The Closure Library Authors. All Rights Reserved.
  5. Use of this source code is governed by the Apache License, Version 2.0.
  6. See the COPYING file for details.
  7. -->
  8. <head>
  9. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  10. <meta charset="UTF-8" />
  11. <title>Closure Unit Tests - goog.*</title>
  12. <script>
  13. var CLOSURE_DEFINES = {
  14. 'SOME_DEFINE': 456,
  15. 'ns.SOME_DEFINE': 456
  16. };
  17. </script>
  18. <script src="base.js"></script>
  19. </head>
  20. <body>
  21. <div id="elem">
  22. <span>One</span>
  23. <span id="text">Two</span>
  24. <span>Three</span>
  25. </div>
  26. <iframe name="f1" id="f1" src=""></iframe>
  27. <iframe name="f2" id="f2" src=""></iframe>
  28. <script>
  29. goog.require('goog.baseTest');
  30. </script>
  31. </body>
  32. </html>