checkbox_test.html 966 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2009 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. -->
  10. <head>
  11. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  12. <meta charset="UTF-8" />
  13. <title>
  14. Closure Unit Tests - goog.ui.Checkbox
  15. </title>
  16. <script src="../base.js">
  17. </script>
  18. <script>
  19. goog.require('goog.ui.CheckboxTest');
  20. </script>
  21. </head>
  22. <body>
  23. <div>
  24. <span id="decorate" class="goog-checkbox">
  25. </span>
  26. <span id="normal" class="goog-checkbox">
  27. </span>
  28. <span id="checked" class="goog-checkbox goog-checkbox-checked">
  29. </span>
  30. <span id="unchecked" class="goog-checkbox goog-checkbox-unchecked">
  31. </span>
  32. <span id="undetermined" class="goog-checkbox goog-checkbox-undetermined">
  33. </span>
  34. <span id="disabled" class="goog-checkbox goog-checkbox-disabled">
  35. </span>
  36. </div>
  37. </body>
  38. </html>