charcounter_test.html 635 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2014 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. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  10. <meta charset="UTF-8" />
  11. <title>
  12. Closure Unit Tests - goog.ui.CharCounter
  13. </title>
  14. <script src="../base.js">
  15. </script>
  16. <script>
  17. goog.require('goog.ui.CharCounterTest');
  18. </script>
  19. </head>
  20. <body>
  21. <textarea id="test-textarea-id">
  22. </textarea>
  23. <div>
  24. Characters remaining:
  25. <span class="char-count">
  26. </span>
  27. </div>
  28. </body>
  29. </html>