timezone.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" href="assets/qunit.css">
  6. <script src="assets/qunit.js"></script>
  7. <!-- console.log for test failures: enable locally if you need extra debug info-->
  8. <!--<script src="assets/qunit-logging.js"></script>-->
  9. <script src="assets/jquery-1.7.1.min.js"></script>
  10. <script src="../js/bootstrap-datepicker.js"></script>
  11. <style>
  12. .datepicker {
  13. /* Appended to body, abs-pos off the page */
  14. position: absolute;
  15. display: none;
  16. top: -9999em;
  17. left: -9999em;
  18. }
  19. </style>
  20. <!-- Utilities -->
  21. <script src="assets/utils.js"></script>
  22. <!-- Test suites -->
  23. <script src="suites/timezone.js"></script>
  24. </head>
  25. <body>
  26. <h1 id="qunit-header">bootstrap-datepicker</h1>
  27. <h2 id="qunit-banner"></h2>
  28. <div id="qunit-testrunner-toolbar"></div>
  29. <h2 id="qunit-userAgent"></h2>
  30. <ol id="qunit-tests"></ol>
  31. <div id="qunit-fixture"></div>
  32. </body>
  33. </html>