viewportclientposition_test.html 806 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE HTML>
  2. <!--
  3. Author: eae@google.com (Emil A Eklund)
  4. -->
  5. <html>
  6. <!--
  7. Copyright 2009 The Closure Library Authors. All Rights Reserved.
  8. Use of this source code is governed by the Apache License, Version 2.0.
  9. See the COPYING file for details.
  10. -->
  11. <head>
  12. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  13. <meta charset="UTF-8" />
  14. <title>
  15. Closure Unit Tests - goog.positioning.ViewportClientPosition
  16. </title>
  17. <script src="../base.js">
  18. </script>
  19. <script>
  20. goog.require('goog.positioning.ViewportClientPositionTest');
  21. </script>
  22. </head>
  23. <body>
  24. <!--
  25. Uses an iframe to avoid window size problems when running under Selenium.
  26. -->
  27. <iframe id="frame1" style="width: 200px; height: 200px;" src="anchoredviewportposition_test_iframe.html">
  28. </iframe>
  29. </body>
  30. </html>