dom_test.html 703 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  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. <!--
  10. This test has not yet been updated to run on IE8. See http://b/hotlist?id=36311
  11. -->
  12. <!--meta http-equiv="X-UA-Compatible" content="IE=edge"-->
  13. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  14. <meta charset="UTF-8" />
  15. <title>
  16. Closure Unit Tests - goog.testing.dom
  17. </title>
  18. <script src="../base.js">
  19. </script>
  20. <script>
  21. goog.require('goog.testing.domTest');
  22. </script>
  23. </head>
  24. <body>
  25. <div id="root">
  26. </div>
  27. </body>
  28. </html>