fontsizemonitor_test.html 943 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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: arv@google.com (Erik Arvidsson)
  10. -->
  11. <head>
  12. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  13. <meta charset="UTF-8" />
  14. <title>Closure Unit Tests - goog.dom.FontSizeMonitor</title>
  15. <script src="../base.js"></script>
  16. <script>
  17. goog.require('goog.dom.FontSizeMonitorTest');
  18. </script>
  19. </head>
  20. <body>
  21. <!-- iframe to be used to test DomHelper support -->
  22. <iframe></iframe>
  23. <!--
  24. This div has a script in it that creates a FontSizeMonitor. This ensures that
  25. we do not get an "Operation abort" error in IE.
  26. -->
  27. <div>
  28. <script>
  29. var operationAbortTester = new goog.dom.FontSizeMonitor();
  30. // Close script tag before disposing.
  31. </script>
  32. <script>
  33. operationAbortTester.dispose();
  34. </script>
  35. </div>
  36. </body>
  37. </html>