button_test.html 731 B

1234567891011121314151617181920212223242526272829303132333435
  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: nicksantos@google.com (Nick Santos)
  10. Author: attila@google.com (Attila Bodis)
  11. -->
  12. <head>
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  14. <meta charset="UTF-8" />
  15. <title>
  16. Closure Unit Tests - goog.ui.Button
  17. </title>
  18. <script src="../base.js">
  19. </script>
  20. <script>
  21. goog.require('goog.ui.ButtonTest');
  22. </script>
  23. </head>
  24. <body>
  25. <p>
  26. Here's a button defined in markup:
  27. </p>
  28. <button id="demoButton" role="button">
  29. Foo
  30. </button>
  31. <div id="sandbox">
  32. </div>
  33. </body>
  34. </html>