iframemask_test.html 822 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. <!--
  9. @author gboyer@google.com (Garrett Boyer)
  10. @author nicksantos@google.com (Nick Santos) (Ported to Closure)
  11. -->
  12. <head>
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  14. <meta charset="UTF-8" />
  15. <title>
  16. goog.ui.IframeMask Unit Test
  17. </title>
  18. <script src="../base.js">
  19. </script>
  20. <script>
  21. goog.require('goog.ui.IframeMaskTest');
  22. </script>
  23. <style type="text/css">
  24. #popup {
  25. position: absolute;
  26. left: 100px;
  27. top: 900px; /* so that you can see unit test failures */
  28. width: 300px;
  29. height: 400px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div id="sandbox">
  35. </div>
  36. </body>
  37. </html>