popup_test.html 662 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2008 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>
  12. Closure Unit Tests - goog.ui.Popup
  13. </title>
  14. <script src="../base.js">
  15. </script>
  16. <script>
  17. goog.require('goog.ui.PopupTest');
  18. </script>
  19. <style>
  20. #popup {
  21. position: absolute;
  22. }
  23. #anchor {
  24. margin-left: 100px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <span id="anchor">
  30. anchor
  31. </span>
  32. <div id="popup">
  33. Popup.
  34. </div>
  35. </body>
  36. </html>