prompt_test.html 696 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2010 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.Prompt
  13. </title>
  14. <script src="../base.js">
  15. </script>
  16. <script>
  17. goog.require('goog.ui.PromptTest');
  18. </script>
  19. <link rel="stylesheet" type="text/css" href="../css/common.css" />
  20. <link rel="stylesheet" type="text/css" href="../css/dialog.css" />
  21. </head>
  22. <body>
  23. <input type="button" value="Prompt" onclick="newPrompt();" />
  24. </body>
  25. </html>