structs_test.html 887 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2006 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.structs
  13. </title>
  14. <script src="../base.js">
  15. </script>
  16. <script>
  17. goog.require('goog.structsTest');
  18. </script>
  19. </head>
  20. <body>
  21. <!-- test container with 10 elements inside, 1 hr and 1 h1 with id h1 -->
  22. <div id="test">
  23. <hr />
  24. <p>
  25. Paragraph 0
  26. </p>
  27. <p>
  28. Paragraph 1
  29. </p>
  30. <p>
  31. Paragraph 2
  32. </p>
  33. <p>
  34. Paragraph 3
  35. </p>
  36. <p>
  37. Paragraph 4
  38. </p>
  39. <p>
  40. Paragraph 5
  41. </p>
  42. <p>
  43. Paragraph 6
  44. </p>
  45. <p>
  46. Paragraph 7
  47. </p>
  48. <h1 id="h1">
  49. Header
  50. </h1>
  51. </div>
  52. </body>
  53. </html>