registry_test.html 737 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <!-- Author: attila@google.com (Attila Bodis) -->
  3. <html>
  4. <!--
  5. Copyright 2008 The Closure Library Authors. All Rights Reserved.
  6. Use of this source code is governed by the Apache License, Version 2.0.
  7. See the COPYING file for details.
  8. -->
  9. <head>
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  11. <meta charset="UTF-8" />
  12. <title>
  13. Closure Unit Tests - goog.ui.registry
  14. </title>
  15. <script src="../base.js">
  16. </script>
  17. <script>
  18. goog.require('goog.ui.registryTest');
  19. </script>
  20. </head>
  21. <body>
  22. <div id="x" class="fake-component-x">
  23. </div>
  24. <div id="y" class="fake-component-y fake-component-x">
  25. </div>
  26. <div id="z" class="fake-component-z">
  27. </div>
  28. <div id="u">
  29. </div>
  30. </body>
  31. </html>