field_test.html 774 B

123456789101112131415161718192021222324252627282930313233
  1. <!--
  2. All Rights Reserved.
  3. Tests for goog.editor.Field
  4. @author nicksantos@google.com (Nick Santos)
  5. @author jparent@google.com (Julie Parent)
  6. --><html>
  7. <!--
  8. Copyright 2008 The Closure Library Authors. All Rights Reserved.
  9. Use of this source code is governed by the Apache License, Version 2.0.
  10. See the COPYING file for details.
  11. -->
  12. <head>
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  14. <meta charset="UTF-8" />
  15. <title>Editor Unit Tests - goog.editor.Field</title>
  16. <script src='../base.js'></script>
  17. <script>
  18. goog.require('goog.editor.Field');
  19. goog.require('goog.editor.field_test');
  20. goog.require('goog.testing.jsunit');
  21. </script>
  22. </head>
  23. <body>
  24. <div id="parent"></div>
  25. <script>
  26. FieldConstructor = goog.editor.Field;
  27. </script>
  28. </body>
  29. </html>
  30. </html>