inputhandler_test.html 497 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2013 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 charset="UTF-8" />
  10. <title>
  11. Input Handler Test
  12. </title>
  13. <script src="../base.js">
  14. </script>
  15. <script>
  16. goog.require('goog.events.InputHandlerTest');
  17. </script>
  18. </head>
  19. <body>
  20. <input type="text" placeholder="Foo" id="input-w-placeholder" />
  21. </body>
  22. </html>