iframe_test.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. All Rights Reserved.
  10. Author: gboyer@google.com (Garrett Boyer)
  11. -->
  12. <head>
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  14. <meta charset="UTF-8" />
  15. <title>Closure Unit Tests - goog.dom.iframe</title>
  16. <script src="../base.js"></script>
  17. <script>
  18. goog.require('goog.dom.iframeTest');
  19. </script>
  20. </head>
  21. <body>
  22. <div style="border: 1px solid black; padding: 4px">
  23. <div>
  24. Blank Iframe - The below area should be completely white.
  25. </div>
  26. <!--
  27. - Simple table to measure the exterior size of the iframe. A table is
  28. - used because it is sensitive to problems with iframe margins and
  29. - vertical alignment.
  30. -->
  31. <table cellpadding="0" cellspacing="0">
  32. <tr><td>
  33. <div id="blank">
  34. </div>
  35. </td></tr>
  36. </table>
  37. </div>
  38. <div id="sandbox"></div>
  39. </body>
  40. </html>